Revision: 6698 http://playerstage.svn.sourceforge.net/playerstage/?rev=6698&view=rev Author: jeremy_asher Date: 2008-06-26 15:42:56 -0700 (Thu, 26 Jun 2008)
Log Message: ----------- Fixed scroller starting too low Modified Paths: -------------- code/stage/trunk/libstage/options_dlg.cc Modified: code/stage/trunk/libstage/options_dlg.cc =================================================================== --- code/stage/trunk/libstage/options_dlg.cc 2008-06-26 22:40:34 UTC (rev 6697) +++ code/stage/trunk/libstage/options_dlg.cc 2008-06-26 22:42:56 UTC (rev 6698) @@ -73,7 +73,7 @@ scroll->begin(); Fl_Check_Button* check; for ( unsigned int i=0; i<options.size(); i++ ) { - check = new Fl_Check_Button( 0,boxH*i, scroll->w(), boxH, options[ i ]->name().c_str() ); + check = new Fl_Check_Button( 0,boxH*(i+1)+vm, scroll->w(), boxH, options[ i ]->name().c_str() ); if ( options[ i ]->val() ) check->set(); check->callback( checkChanged, this ); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. ------------------------------------------------------------------------- Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://sourceforge.net/services/buy/index.php _______________________________________________ Playerstage-commit mailing list Playerstage-commit@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/playerstage-commit