app/text_tool.c

Fri Oct 22 20:39:13 BST 1999 Andy Thomas <alt@gimp.org>

	* app/text_tool.c

	Fixed the problem where the border values was been ignored.
This commit is contained in:
BST 1999 Andy Thomas 1999-10-22 19:45:05 +00:00 committed by Andy Thomas
parent 1cd602cc4a
commit 85bbd68cf9
4 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
Fri Oct 22 20:39:13 BST 1999 Andy Thomas <alt@gimp.org>
* app/text_tool.c
Fixed the problem where the border values was been ignored.
Thu Oct 21 21:29:40 MEST 1999 Sven Neumann <sven@gimp.org>
* libgimp/gimpexport.c: handle CAN_HANDLE_LAYERS_AS_ANIMATIONS

View File

@ -185,7 +185,7 @@ text_options_new (void)
options->border_w =
gtk_adjustment_new (options->border_d, 0.0, 32767.0, 1.0, 50.0, 0.0);
gtk_signal_connect (GTK_OBJECT (options->border_w), "changed",
gtk_signal_connect (GTK_OBJECT (options->border_w), "value_changed",
(GtkSignalFunc) tool_options_int_adjustment_update,
&options->border);
spinbutton =

View File

@ -185,7 +185,7 @@ text_options_new (void)
options->border_w =
gtk_adjustment_new (options->border_d, 0.0, 32767.0, 1.0, 50.0, 0.0);
gtk_signal_connect (GTK_OBJECT (options->border_w), "changed",
gtk_signal_connect (GTK_OBJECT (options->border_w), "value_changed",
(GtkSignalFunc) tool_options_int_adjustment_update,
&options->border);
spinbutton =

View File

@ -185,7 +185,7 @@ text_options_new (void)
options->border_w =
gtk_adjustment_new (options->border_d, 0.0, 32767.0, 1.0, 50.0, 0.0);
gtk_signal_connect (GTK_OBJECT (options->border_w), "changed",
gtk_signal_connect (GTK_OBJECT (options->border_w), "value_changed",
(GtkSignalFunc) tool_options_int_adjustment_update,
&options->border);
spinbutton =