diff options
author | Cristian Iorga <cristian.iorga@intel.com> | 2012-10-02 17:44:55 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-10-02 16:48:33 +0100 |
commit | 7c2b1d5366b021d921a4ecf1ee3a67fc833af3a3 (patch) | |
tree | 37de42580e9c71e27e1b3d6a4872b54340df4d0f | |
parent | f18208a94c4d87fe4eddb44f0340fdca68c1ffa0 (diff) | |
download | poky-7c2b1d5366b021d921a4ecf1ee3a67fc833af3a3.tar.gz |
bitbake: hob: Improved behavior for error reporting window
Scrollbars have now an automatic behavior, depending on
the error's text size and error window size.
Fixes [YOCTO #2983]
(Bitbake rev: 0c0a25672498520fb2c46164f08959dda83c61e0)
Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/lib/bb/ui/crumbs/hig.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hig.py b/bitbake/lib/bb/ui/crumbs/hig.py index c5307dfc18..c7a50ba415 100644 --- a/bitbake/lib/bb/ui/crumbs/hig.py +++ b/bitbake/lib/bb/ui/crumbs/hig.py | |||
@@ -280,6 +280,7 @@ class CrumbsMessageDialog(CrumbsDialog): | |||
280 | self.label_long.show() | 280 | self.label_long.show() |
281 | self.textWindow = gtk.ScrolledWindow() | 281 | self.textWindow = gtk.ScrolledWindow() |
282 | self.textWindow.set_shadow_type(gtk.SHADOW_IN) | 282 | self.textWindow.set_shadow_type(gtk.SHADOW_IN) |
283 | self.textWindow.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC) | ||
283 | self.msgView = gtk.TextView() | 284 | self.msgView = gtk.TextView() |
284 | self.msgView.set_editable(False) | 285 | self.msgView.set_editable(False) |
285 | self.msgView.set_wrap_mode(gtk.WRAP_WORD) | 286 | self.msgView.set_wrap_mode(gtk.WRAP_WORD) |