mirror of https://github.com/GNOME/gimp.git
made the Size scale logarithmic as suggested in bug #159632.
2004-11-27 Sven Neumann <sven@gimp.org> * app/tools/gimpinkoptions-gui.c: made the Size scale logarithmic as suggested in bug #159632.
This commit is contained in:
parent
29eb62c231
commit
027cec0d18
|
@ -1,3 +1,8 @@
|
|||
2004-11-27 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/tools/gimpinkoptions-gui.c: made the Size scale logarithmic
|
||||
as suggested in bug #159632.
|
||||
|
||||
2004-11-27 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* plug-ins/common/tiff.c (save_image): tell the user that we can't
|
||||
|
|
|
@ -51,6 +51,7 @@ gimp_ink_options_gui (GimpToolOptions *tool_options)
|
|||
GtkWidget *hbox;
|
||||
GtkWidget *frame;
|
||||
GtkWidget *editor;
|
||||
GtkObject *adj;
|
||||
|
||||
vbox = gimp_paint_options_gui (tool_options);
|
||||
|
||||
|
@ -65,11 +66,12 @@ gimp_ink_options_gui (GimpToolOptions *tool_options)
|
|||
gtk_widget_show (table);
|
||||
|
||||
/* size slider */
|
||||
gimp_prop_scale_entry_new (config, "size",
|
||||
GTK_TABLE (table), 0, 0,
|
||||
_("Size:"),
|
||||
1.0, 2.0, 1,
|
||||
FALSE, 0.0, 0.0);
|
||||
adj = gimp_prop_scale_entry_new (config, "size",
|
||||
GTK_TABLE (table), 0, 0,
|
||||
_("Size:"),
|
||||
1.0, 2.0, 1,
|
||||
FALSE, 0.0, 0.0);
|
||||
gimp_scale_entry_set_logarithmic (adj, TRUE);
|
||||
|
||||
/* angle adjust slider */
|
||||
gimp_prop_scale_entry_new (config, "tilt-angle",
|
||||
|
|
Loading…
Reference in New Issue