From: Liming An Date: Mon, 16 Apr 2012 08:53:27 +0000 (+0800) Subject: Hob: fixed the issue that the notebook overlay-scrollbar is overlapped X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f6be78d8a45dc501c2bbe1e1a399a342dabe11d5;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git Hob: fixed the issue that the notebook overlay-scrollbar is overlapped In those systems which had use gtk overlay-scrollbar feature,such as Ubuntu 11.10, we have the issue with the multiple overlaped scrollbar in 'Recipe View' notebook or 'Package View' notebook, this patch is going to fix it. Signed-off-by: Liming An Signed-off-by: Richard Purdie --- diff --git a/lib/bb/ui/crumbs/hobwidget.py b/lib/bb/ui/crumbs/hobwidget.py index a42cdecf2d8..490de4a6b15 100644 --- a/lib/bb/ui/crumbs/hobwidget.py +++ b/lib/bb/ui/crumbs/hobwidget.py @@ -165,7 +165,6 @@ class HobViewTable (gtk.VBox): scroll = gtk.ScrolledWindow() scroll.set_policy(gtk.POLICY_NEVER, gtk.POLICY_ALWAYS) - scroll.set_shadow_type(gtk.SHADOW_IN) scroll.add(self.table_tree) self.pack_start(scroll, True, True, 0)