From: <sea...@us...> - 2006-09-13 18:02:14
|
Revision: 17266 http://svn.sourceforge.net/gaim/?rev=17266&view=rev Author: seanegan Date: 2006-09-13 11:02:08 -0700 (Wed, 13 Sep 2006) Log Message: ----------- There's a horizontal separator between the imhtml and the imhtml toolbar. Before we weren't hiding he separator if we hid the toolbar which resulted in a stray horizontal line. This kills that. Modified Paths: -------------- trunk/gtk/gtkutils.c Modified: trunk/gtk/gtkutils.c =================================================================== --- trunk/gtk/gtkutils.c 2006-09-12 23:56:25 UTC (rev 17265) +++ trunk/gtk/gtkutils.c 2006-09-13 18:02:08 UTC (rev 17266) @@ -124,6 +124,8 @@ sep = gtk_hseparator_new(); gtk_box_pack_start(GTK_BOX(vbox), sep, FALSE, FALSE, 0); + g_signal_connect_swapped(G_OBJECT(toolbar), "show", G_CALLBACK(gtk_widget_show), sep); + g_signal_connect_swapped(G_OBJECT(toolbar), "hide", G_CALLBACK(gtk_widget_hide), sep); gtk_widget_show(sep); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |