[Gpredict-svn] SF.net SVN: gpredict:[526] trunk/src
Real time satellite tracking and orbit prediction
Status: Beta
Brought to you by:
csete
From: <cs...@us...> - 2009-11-22 22:45:42
|
Revision: 526 http://gpredict.svn.sourceforge.net/gpredict/?rev=526&view=rev Author: csete Date: 2009-11-22 22:45:34 +0000 (Sun, 22 Nov 2009) Log Message: ----------- Changed default sized to allow scaling down to 100x100 grid cell size. Modified Paths: -------------- trunk/src/gtk-polar-view.c trunk/src/gtk-sat-map.c Modified: trunk/src/gtk-polar-view.c =================================================================== --- trunk/src/gtk-polar-view.c 2009-11-22 22:31:10 UTC (rev 525) +++ trunk/src/gtk-polar-view.c 2009-11-22 22:45:34 UTC (rev 526) @@ -47,7 +47,7 @@ -#define POLV_DEFAULT_SIZE 300 +#define POLV_DEFAULT_SIZE 100 #define POLV_DEFAULT_MARGIN 25 /* extra size for line outside 0 deg circle (inside margin) */ Modified: trunk/src/gtk-sat-map.c =================================================================== --- trunk/src/gtk-sat-map.c 2009-11-22 22:31:10 UTC (rev 525) +++ trunk/src/gtk-sat-map.c 2009-11-22 22:45:34 UTC (rev 526) @@ -313,8 +313,8 @@ root = goo_canvas_group_model_new (NULL, NULL); /* map dimensions */ - satmap->width = gdk_pixbuf_get_width (satmap->origmap); - satmap->height = gdk_pixbuf_get_height (satmap->origmap); + satmap->width = 200; // was: gdk_pixbuf_get_width (satmap->origmap); + satmap->height = 100; // was: gdk_pixbuf_get_height (satmap->origmap); satmap->x0 = 0; satmap->y0 = 0; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |