From: <rl...@us...> - 2006-11-01 02:14:06
|
Revision: 17644 http://svn.sourceforge.net/gaim/?rev=17644&view=rev Author: rlaager Date: 2006-10-31 18:13:37 -0800 (Tue, 31 Oct 2006) Log Message: ----------- SF Patch #1586467 from Benjamin Moody - floppusmaximus "Currently if a plugin creates a multi-line, non-HTML string preference, i.e. a GaimPluginPref with type GAIM_PLUGIN_PREF_STRING_FORMAT and format-type GAIM_STRING_FORMAT_TYPE_MULTILINE, the resulting widget is extremely narrow and impossible to use. This is because the widget is packed into an hbox without allowing expansion (expand = fill = FALSE.) If HTML is enabled, the presence of the format bar forces the widget to be wide enough to be usable. Disabling HTML causes the format bar to be removed, so the widget is set to the minimum allowed size." Modified Paths: -------------- trunk/COPYRIGHT trunk/gtk/gtkpluginpref.c Modified: trunk/COPYRIGHT =================================================================== --- trunk/COPYRIGHT 2006-11-01 01:27:16 UTC (rev 17643) +++ trunk/COPYRIGHT 2006-11-01 02:13:37 UTC (rev 17644) @@ -202,6 +202,7 @@ Paul Miller Arkadiusz Miskiewicz Andrew Molloy +Benjamin Moody Tim Mooney Sergio Moretto Christian Muise Modified: trunk/gtk/gtkpluginpref.c =================================================================== --- trunk/gtk/gtkpluginpref.c 2006-11-01 01:27:16 UTC (rev 17643) +++ trunk/gtk/gtkpluginpref.c 2006-11-01 02:13:37 UTC (rev 17644) @@ -154,7 +154,7 @@ "changed", G_CALLBACK(imhtml_cb), imhtml); g_signal_connect(G_OBJECT(imhtml), "format_function_toggle", G_CALLBACK(imhtml_format_cb), imhtml); - gtk_box_pack_start(GTK_BOX(hbox), frame, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(hbox), frame, TRUE, TRUE, 0); } break; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |