Sliders for mouse accel don't need to be that long. Decrease slider size.

SVN revision: 33172
This commit is contained in:
Christopher Michael 2007-12-18 01:29:26 +00:00
parent 9d91832842
commit 8fcc8e14d7
1 changed files with 2 additions and 2 deletions

View File

@ -93,13 +93,13 @@ _basic_create_widgets(E_Config_Dialog *cfd, Evas *evas, E_Config_Dialog_Data *cf
ob = e_widget_label_add(evas, _("Acceleration"));
e_widget_framelist_object_append(of, ob);
ob = e_widget_slider_add(evas, 1, 0, _("%1.0f"), 1.0, 10.0, 1.0, 0,
&(cfdata->numerator), NULL, 200);
&(cfdata->numerator), NULL, 100);
e_widget_framelist_object_append(of, ob);
ob = e_widget_label_add(evas, _("Threshold"));
e_widget_framelist_object_append(of, ob);
ob = e_widget_slider_add(evas, 1, 0, _("%1.0f"), 1.0, 10.0, 1.0, 0,
&(cfdata->threshold), NULL, 200);
&(cfdata->threshold), NULL, 100);
e_widget_framelist_object_append(of, ob);
e_widget_list_object_append(o, of, 1, 1, 0.5);