mirror of https://github.com/GNOME/gimp.git
enable word-wrapping in the Script-Fu console.
2007-04-20 Sven Neumann <sven@gimp.org> * plug-ins/script-fu/script-fu-console.c: enable word-wrapping in the Script-Fu console. svn path=/trunk/; revision=22291
This commit is contained in:
parent
e15361cdaf
commit
04dfa6366a
|
@ -1,3 +1,8 @@
|
|||
2007-04-20 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* plug-ins/script-fu/script-fu-console.c: enable word-wrapping in
|
||||
the Script-Fu console.
|
||||
|
||||
2007-04-19 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* configure.in (ALL_LINGUAS): added 'km' (Khmer) (bug #420417).
|
||||
|
|
|
@ -186,6 +186,8 @@ script_fu_console_interface (void)
|
|||
output = console->text_view;
|
||||
|
||||
gtk_text_view_set_editable (GTK_TEXT_VIEW (console->text_view), FALSE);
|
||||
gtk_text_view_set_wrap_mode (GTK_TEXT_VIEW (console->text_view),
|
||||
GTK_WRAP_WORD);
|
||||
gtk_text_view_set_left_margin (GTK_TEXT_VIEW (console->text_view), 6);
|
||||
gtk_text_view_set_right_margin (GTK_TEXT_VIEW (console->text_view), 6);
|
||||
gtk_widget_set_size_request (console->text_view, TEXT_WIDTH, TEXT_HEIGHT);
|
||||
|
|
Loading…
Reference in New Issue