summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorIoana Grigoropol <ioanax.grigoropol@intel.com>2013-04-09 13:25:48 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-04-10 09:23:18 +0100
commit1b93e2bc913af90b6a8274215ae9848ee628198b (patch)
treef093d4ac4389eb887cea7bd6a7c861755f16278d /bitbake
parent4330e152ab743b2df447221ee953b8a1f8990903 (diff)
downloadpoky-1b93e2bc913af90b6a8274215ae9848ee628198b.tar.gz
bitbake: hob:Only display scrolled list of images if needed
- do not set the Images window to always display a scroll bar if it is not needed [Yocto #4171] (Bitbake rev: 970e2e6f079fa9a49646f86364eae9a4ee241f90) Signed-off-by: Ioana Grigoropol <ioanax.grigoropol@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/ui/crumbs/hobwidget.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hobwidget.py b/bitbake/lib/bb/ui/crumbs/hobwidget.py
index 1d1ae1a349..f482a26f6a 100644
--- a/bitbake/lib/bb/ui/crumbs/hobwidget.py
+++ b/bitbake/lib/bb/ui/crumbs/hobwidget.py
@@ -142,7 +142,7 @@ class HobViewTable (gtk.VBox):
142 col.add_attribute(cell, 'font', column['col_t_id']) 142 col.add_attribute(cell, 'font', column['col_t_id'])
143 143
144 self.scroll = gtk.ScrolledWindow() 144 self.scroll = gtk.ScrolledWindow()
145 self.scroll.set_policy(gtk.POLICY_NEVER, gtk.POLICY_ALWAYS) 145 self.scroll.set_policy(gtk.POLICY_NEVER, gtk.POLICY_AUTOMATIC)
146 self.scroll.add(self.table_tree) 146 self.scroll.add(self.table_tree)
147 147
148 self.pack_end(self.scroll, True, True, 0) 148 self.pack_end(self.scroll, True, True, 0)