diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2016-12-28 20:25:00 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2016-12-28 20:25:00 +0100 |
commit | db0fcf9142f9ee7035370f832036c873d4c87168 (patch) | |
tree | a4062cdf2158362a0a431eb1806719e9f0975cb1 /app/bin/draw.c | |
parent | ee016bcb70b5c380e03b5fd2c12b1baa504c3cc8 (diff) | |
parent | 09795a01ef859f072920de9df974d1b03b9ab9a4 (diff) |
Merge tag 'upstream/4.2.4a'
Upstream version 4.2.4a
Diffstat (limited to 'app/bin/draw.c')
-rw-r--r-- | app/bin/draw.c | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/app/bin/draw.c b/app/bin/draw.c index 1987113..c04373c 100644 --- a/app/bin/draw.c +++ b/app/bin/draw.c @@ -151,17 +151,28 @@ static struct { wMenuRadio_p btRadio; } zoomList[] = { { "1:10", 1.0 / 10.0 }, + { "1:9", 1.0 / 9.0 }, + { "1:8", 1.0 / 8.0 }, + { "1:7", 1.0 / 7.0 }, + { "1:6", 1.0 / 6.0 }, { "1:5", 1.0 / 5.0 }, + { "1:4", 1.0 / 4.0 }, + { "1:3", 1.0 / 3.0 }, { "1:2", 1.0 / 2.0 }, { "1:1", 1.0 }, { "2:1", 2.0 }, { "3:1", 3.0 }, { "4:1", 4.0 }, + { "5:1", 5.0 }, { "6:1", 6.0 }, + { "7:1", 7.0 }, { "8:1", 8.0 }, + { "9:1", 9.0 }, { "10:1", 10.0 }, { "12:1", 12.0 }, + { "14:1", 14.0 }, { "16:1", 16.0 }, + { "18:1", 18.0 }, { "20:1", 20.0 }, { "24:1", 24.0 }, { "28:1", 28.0 }, @@ -1171,7 +1182,6 @@ static void MapResize( void ) MapRedraw(); } - #ifdef LATER static void MapProc( wWin_p win, winProcEvent e, void * data ) { @@ -2367,7 +2377,7 @@ static void MapDlgUpdate( void * valueP ) { if ( inx == -1 ) { - mapVisible = FALSE; + MapWindowShow( FALSE ); } } |