From: Christian Dywan Date: Wed, 9 Nov 2011 22:04:23 +0000 (+0100) Subject: For lack of a better way, don't scroll extension descriptions X-Git-Url: https://spindle.queued.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ac6e23680c0c7d33c4867b4d192883fcaddf22f2;p=midori For lack of a better way, don't scroll extension descriptions Obscuring the settings icon is very bad for usability. --- diff --git a/midori/main.c b/midori/main.c index 129a81f1..ccfe3532 100644 --- a/midori/main.c +++ b/midori/main.c @@ -731,6 +731,8 @@ midori_browser_show_preferences_cb (MidoriBrowser* browser, g_object_unref (array); scrolled = g_object_new (KATZE_TYPE_SCROLLED, "visible", TRUE, NULL); + /* For lack of a better way of keeping descriptions visible */ + g_object_set (scrolled, "hscrollbar-policy", GTK_POLICY_NEVER, NULL); addon = g_object_new (MIDORI_TYPE_EXTENSIONS, "app", app, NULL); children = gtk_container_get_children (GTK_CONTAINER (addon)); gtk_widget_reparent (g_list_nth_data (children, 0), scrolled);