[Gpredict-svn] SF.net SVN: gpredict:[435] trunk/src/gtk-sat-module-tmg.c
Real time satellite tracking and orbit prediction
Status: Beta
Brought to you by:
csete
From: <cs...@us...> - 2009-09-25 13:08:14
|
Revision: 435 http://gpredict.svn.sourceforge.net/gpredict/?rev=435&view=rev Author: csete Date: 2009-09-25 13:08:05 +0000 (Fri, 25 Sep 2009) Log Message: ----------- Changed slider limit to +/- 2.5 hours. Modified Paths: -------------- trunk/src/gtk-sat-module-tmg.c Modified: trunk/src/gtk-sat-module-tmg.c =================================================================== --- trunk/src/gtk-sat-module-tmg.c 2009-09-25 13:04:29 UTC (rev 434) +++ trunk/src/gtk-sat-module-tmg.c 2009-09-25 13:08:05 UTC (rev 435) @@ -265,9 +265,9 @@ 2, 3, 4, 5, GTK_SHRINK, GTK_SHRINK, 0, 0); /* add slider */ - mod->tmgSlider = gtk_hscale_new_with_range (-0.208, +0.208, 0.0001); // +/- 5 hr + mod->tmgSlider = gtk_hscale_new_with_range (-0.1, +0.1, 0.0001); // +/- 2.5 hr gtk_widget_set_tooltip_text (mod->tmgSlider, - _("Drag the slider to change the time up to +/- 5 hours.\n"\ + _("Drag the slider to change the time up to +/- 2.5 hours.\n"\ "Resolution is ~ 8 seconds.")); gtk_scale_set_draw_value (GTK_SCALE (mod->tmgSlider), FALSE); gtk_range_set_value (GTK_RANGE (mod->tmgSlider), 0.0); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |