]> git.xonotic.org Git - xonotic/netradiant.git/commitdiff
Cleaned up comments.
authorStijn Buys <ingar@telenet.be>
Tue, 25 Jun 2013 20:00:02 +0000 (22:00 +0200)
committerStijn Buys <ingar@telenet.be>
Tue, 25 Jun 2013 20:00:02 +0000 (22:00 +0200)
radiant/gtkdlgs.cpp

index ace48396db0c60365f29b3e9f21bb52dc28585ce..34fc54c7a80e1a4ecd9884a4d699a22986a32f3c 100644 (file)
@@ -590,7 +590,7 @@ void DoAbout(){
 // =============================================================================
 // TextureLayout dialog
 
-// remembers last used texture scale values
+// Last used texture scale values
 static float last_used_texture_layout_scale_x = 4.0;
 static float last_used_texture_layout_scale_y = 4.0;
 
@@ -687,14 +687,15 @@ EMessageBoxReturn DoTextureLayout( float *fx, float *fy ){
        sprintf( buf, "%f", last_used_texture_layout_scale_y );
        gtk_entry_set_text( y, buf );
 
-       // Set focus
+       // Set focus after intializing the values
        gtk_widget_grab_focus( GTK_WIDGET( x ) );
 
        EMessageBoxReturn ret = modal_dialog_show( window, dialog );
        if ( ret == eIDOK ) {
                *fx = static_cast<float>( atof( gtk_entry_get_text( x ) ) );
                *fy = static_cast<float>( atof( gtk_entry_get_text( y ) ) );
-               
+       
+               // Remember last used values
                last_used_texture_layout_scale_x = *fx;
                last_used_texture_layout_scale_y = *fy;
        }