Mercurial > pidgin
diff src/gtkpounce.c @ 13773:3ac2d64a74a0
[gaim-migrate @ 16185]
SF Patch #1480147 from sanmarcos-
"This removes unused scrollbars (i.e, there is nothing
to scroll, and the bar is visible) in GtkAccount,
GtkPounce, GtkPrivacy, GtkFt and GtkPlugin."
I don't know of any compelling reason we have forced scrollbars here, and
forcing scrollbars is almost always wrong, in my opinion.
committer: Tailor Script <tailor@pidgin.im>
| author | Richard Laager <rlaager@wiktel.com> |
|---|---|
| date | Fri, 12 May 2006 23:04:48 +0000 |
| parents | 1e6de7b949d4 |
| children | a9ff4499d9ce |
line wrap: on
line diff
--- a/src/gtkpounce.c Fri May 12 22:25:26 2006 +0000 +++ b/src/gtkpounce.c Fri May 12 23:04:48 2006 +0000 @@ -1184,10 +1184,10 @@ /* Create the scrolled window */ sw = gtk_scrolled_window_new(0, 0); gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw), - GTK_POLICY_AUTOMATIC, - GTK_POLICY_ALWAYS); + GTK_POLICY_AUTOMATIC, + GTK_POLICY_AUTOMATIC); gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(sw), - GTK_SHADOW_IN); + GTK_SHADOW_IN); gtk_widget_show(sw); /* Create the list model */
