mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2024-11-10 07:11:54 +00:00
Set increments on the surface inspector step spinners. This makes these far more useful.
This commit is contained in:
parent
36bd918baf
commit
3b8e83fb80
1 changed files with 15 additions and 10 deletions
|
@ -568,30 +568,35 @@ void SetTexMods(){
|
|||
gtk_adjustment_set_step_increment( adjust, l_pIncrement->shift[0] );
|
||||
spin = GTK_SPIN_BUTTON( hshift_step_spinbutton );
|
||||
gtk_spin_button_set_value( spin, l_pIncrement->shift[0] );
|
||||
gtk_spin_button_set_increments( spin, l_pIncrement->shift[0], l_pIncrement->shift[0] );
|
||||
|
||||
spin = GTK_SPIN_BUTTON( vshift_value_spinbutton );
|
||||
adjust = gtk_spin_button_get_adjustment( GTK_SPIN_BUTTON( spin ) );
|
||||
gtk_adjustment_set_step_increment( adjust, l_pIncrement->shift[1] );
|
||||
spin = GTK_SPIN_BUTTON( vshift_step_spinbutton );
|
||||
gtk_spin_button_set_value( spin, l_pIncrement->shift[1] );
|
||||
gtk_spin_button_set_increments( spin, l_pIncrement->shift[1], l_pIncrement->shift[1] );
|
||||
|
||||
spin = GTK_SPIN_BUTTON( hscale_value_spinbutton );
|
||||
adjust = gtk_spin_button_get_adjustment( GTK_SPIN_BUTTON( spin ) );
|
||||
gtk_adjustment_set_step_increment( adjust, l_pIncrement->scale[0] );
|
||||
spin = GTK_SPIN_BUTTON( hscale_step_spinbutton );
|
||||
gtk_spin_button_set_value( spin, l_pIncrement->scale[0] );
|
||||
gtk_spin_button_set_increments( spin, l_pIncrement->scale[0], l_pIncrement->scale[0] );
|
||||
|
||||
spin = GTK_SPIN_BUTTON( vscale_value_spinbutton );
|
||||
adjust = gtk_spin_button_get_adjustment( GTK_SPIN_BUTTON( spin ) );
|
||||
gtk_adjustment_set_step_increment( adjust, l_pIncrement->scale[1] );
|
||||
spin = GTK_SPIN_BUTTON( vscale_step_spinbutton );
|
||||
gtk_spin_button_set_value( spin, l_pIncrement->scale[1] );
|
||||
gtk_spin_button_set_increments( spin, l_pIncrement->scale[1], l_pIncrement->scale[1] );
|
||||
|
||||
spin = GTK_SPIN_BUTTON( rotate_value_spinbutton );
|
||||
adjust = gtk_spin_button_get_adjustment( GTK_SPIN_BUTTON( spin ) );
|
||||
gtk_adjustment_set_step_increment( adjust, l_pIncrement->rotate );
|
||||
spin = GTK_SPIN_BUTTON( rotate_step_spinbutton );
|
||||
gtk_spin_button_set_value( spin, l_pIncrement->rotate );
|
||||
gtk_spin_button_set_increments( spin, l_pIncrement->rotate, l_pIncrement->rotate );
|
||||
|
||||
g_bListenChanged = true;
|
||||
|
||||
|
|
Loading…
Reference in a new issue