diff options
author | Liming An <limingx.l.an@intel.com> | 2012-04-16 16:53:27 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-04-16 12:56:25 +0100 |
commit | 6d7aae9e975b43131f5dec70e4ea232d25f0172f (patch) | |
tree | b88bd4a085b1eae9e7243c549bca2c1c4f9ee570 /bitbake | |
parent | d5a9ff4b27e8826b47737c4094463896874253f4 (diff) | |
download | poky-6d7aae9e975b43131f5dec70e4ea232d25f0172f.tar.gz |
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.
(Bitbake rev: f6be78d8a45dc501c2bbe1e1a399a342dabe11d5)
Signed-off-by: Liming An <limingx.l.an@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/ui/crumbs/hobwidget.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hobwidget.py b/bitbake/lib/bb/ui/crumbs/hobwidget.py index a42cdecf2d..490de4a6b1 100644 --- a/bitbake/lib/bb/ui/crumbs/hobwidget.py +++ b/bitbake/lib/bb/ui/crumbs/hobwidget.py | |||
@@ -165,7 +165,6 @@ class HobViewTable (gtk.VBox): | |||
165 | 165 | ||
166 | scroll = gtk.ScrolledWindow() | 166 | scroll = gtk.ScrolledWindow() |
167 | scroll.set_policy(gtk.POLICY_NEVER, gtk.POLICY_ALWAYS) | 167 | scroll.set_policy(gtk.POLICY_NEVER, gtk.POLICY_ALWAYS) |
168 | scroll.set_shadow_type(gtk.SHADOW_IN) | ||
169 | scroll.add(self.table_tree) | 168 | scroll.add(self.table_tree) |
170 | self.pack_start(scroll, True, True, 0) | 169 | self.pack_start(scroll, True, True, 0) |
171 | 170 | ||