reviewed by: Jens Granseuer
2008-02-08 Luca Ferretti <elle.uca@libero.it> reviewed by: Jens Granseuer * gnome-mouse-properties.c: (create_dialog): set up the proper scale widgets to GtkSizeGroup in both tabs * gnome-mouse-properties.glade: fix HIG compliance for spacing, borders, padding, alignment and sentence label (bug #510147, comment 23) svn path=/trunk/; revision=8454
This commit is contained in:
parent
f3813506ae
commit
9e37b7feb3
3 changed files with 476 additions and 575 deletions
|
@ -1,3 +1,13 @@
|
|||
2008-02-08 Luca Ferretti <elle.uca@libero.it>
|
||||
|
||||
reviewed by: Jens Granseuer
|
||||
|
||||
* gnome-mouse-properties.c: (create_dialog): set up the proper
|
||||
scale widgets to GtkSizeGroup in both tabs
|
||||
* gnome-mouse-properties.glade: fix HIG compliance for spacing,
|
||||
borders, padding, alignment and sentence label (bug #510147,
|
||||
comment 23)
|
||||
|
||||
2008-01-25 Jens Granseuer <jensgr@gmx.net>
|
||||
|
||||
Patch by: Luca Ferretti <elle.uca@libero.it>
|
||||
|
|
|
@ -408,16 +408,34 @@ create_dialog (void)
|
|||
gtk_size_group_add_widget (size_group, WID ("acceleration_label"));
|
||||
gtk_size_group_add_widget (size_group, WID ("sensitivity_label"));
|
||||
gtk_size_group_add_widget (size_group, WID ("threshold_label"));
|
||||
gtk_size_group_add_widget (size_group, WID ("timeout_label"));
|
||||
|
||||
size_group = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL);
|
||||
gtk_size_group_add_widget (size_group, WID ("high_label"));
|
||||
gtk_size_group_add_widget (size_group, WID ("fast_label"));
|
||||
gtk_size_group_add_widget (size_group, WID ("large_label"));
|
||||
gtk_size_group_add_widget (size_group, WID ("acceleration_fast_label"));
|
||||
gtk_size_group_add_widget (size_group, WID ("sensitivity_high_label"));
|
||||
gtk_size_group_add_widget (size_group, WID ("threshold_large_label"));
|
||||
gtk_size_group_add_widget (size_group, WID ("timeout_long_label"));
|
||||
|
||||
size_group = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL);
|
||||
gtk_size_group_add_widget (size_group, WID ("low_label"));
|
||||
gtk_size_group_add_widget (size_group, WID ("slow_label"));
|
||||
gtk_size_group_add_widget (size_group, WID ("small_label"));
|
||||
gtk_size_group_add_widget (size_group, WID ("acceleration_slow_label"));
|
||||
gtk_size_group_add_widget (size_group, WID ("sensitivity_low_label"));
|
||||
gtk_size_group_add_widget (size_group, WID ("threshold_small_label"));
|
||||
gtk_size_group_add_widget (size_group, WID ("timeout_short_label"));
|
||||
|
||||
size_group = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL);
|
||||
gtk_size_group_add_widget (size_group, WID ("simulated_delay_label"));
|
||||
gtk_size_group_add_widget (size_group, WID ("dwell_delay_label"));
|
||||
gtk_size_group_add_widget (size_group, WID ("dwell_threshold_label"));
|
||||
|
||||
size_group = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL);
|
||||
gtk_size_group_add_widget (size_group, WID ("simulated_delay_short_label"));
|
||||
gtk_size_group_add_widget (size_group, WID ("dwell_delay_short_label"));
|
||||
gtk_size_group_add_widget (size_group, WID ("dwell_threshold_small_label"));
|
||||
|
||||
size_group = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL);
|
||||
gtk_size_group_add_widget (size_group, WID ("simulated_delay_long_label"));
|
||||
gtk_size_group_add_widget (size_group, WID ("dwell_delay_long_label"));
|
||||
gtk_size_group_add_widget (size_group, WID ("dwell_threshold_large_label"));
|
||||
|
||||
return dialog;
|
||||
}
|
||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue