don't make the font size even smaller. We already use a smaller font in
2008-10-20 Sven Neumann <sven@gimp.org> * app/widgets/gimperrorconsole.c (gimp_error_console_init): don't make the font size even smaller. We already use a smaller font in the dock windows. svn path=/trunk/; revision=27341
This commit is contained in:

committed by
Sven Neumann

parent
8c6a7e8843
commit
4c357c5f0d
@ -1,3 +1,9 @@
|
|||||||
|
2008-10-20 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
|
* app/widgets/gimperrorconsole.c (gimp_error_console_init): don't
|
||||||
|
make the font size even smaller. We already use a smaller font in
|
||||||
|
the dock windows.
|
||||||
|
|
||||||
2008-10-20 Sven Neumann <sven@gimp.org>
|
2008-10-20 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
* app/widgets/gimpgradienteditor.c (view_events) (control_events):
|
* app/widgets/gimpgradienteditor.c (view_events) (control_events):
|
||||||
|
@ -77,10 +77,10 @@ gimp_error_console_init (GimpErrorConsole *console)
|
|||||||
console->text_buffer = gtk_text_buffer_new (NULL);
|
console->text_buffer = gtk_text_buffer_new (NULL);
|
||||||
|
|
||||||
gtk_text_buffer_create_tag (console->text_buffer, "title",
|
gtk_text_buffer_create_tag (console->text_buffer, "title",
|
||||||
|
"scale", PANGO_SCALE_LARGE,
|
||||||
"weight", PANGO_WEIGHT_BOLD,
|
"weight", PANGO_WEIGHT_BOLD,
|
||||||
NULL);
|
NULL);
|
||||||
gtk_text_buffer_create_tag (console->text_buffer, "message",
|
gtk_text_buffer_create_tag (console->text_buffer, "message",
|
||||||
"scale", PANGO_SCALE_SMALL,
|
|
||||||
NULL);
|
NULL);
|
||||||
|
|
||||||
scrolled_window = gtk_scrolled_window_new (NULL, NULL);
|
scrolled_window = gtk_scrolled_window_new (NULL, NULL);
|
||||||
@ -201,7 +201,7 @@ gimp_error_console_add (GimpErrorConsole *console,
|
|||||||
|
|
||||||
pixbuf = gtk_widget_render_icon (console->text_view,
|
pixbuf = gtk_widget_render_icon (console->text_view,
|
||||||
gimp_get_message_stock_id (severity),
|
gimp_get_message_stock_id (severity),
|
||||||
GTK_ICON_SIZE_MENU, NULL);
|
GTK_ICON_SIZE_BUTTON, NULL);
|
||||||
gtk_text_buffer_insert_pixbuf (console->text_buffer, &end, pixbuf);
|
gtk_text_buffer_insert_pixbuf (console->text_buffer, &end, pixbuf);
|
||||||
g_object_unref (pixbuf);
|
g_object_unref (pixbuf);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user