diff options
author | Joshua Lock <josh@linux.intel.com> | 2012-04-12 19:45:29 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-20 09:24:25 +0100 |
commit | 9e59dea4111afdc0d6b5b1bb88a40785dd96e80a (patch) | |
tree | 35509653be29b0ce1a0be02460649859ac347c27 /bitbake/lib/bb/ui | |
parent | 44a40f7a569ac583a949a088f14f97f66b19af4f (diff) | |
download | poky-9e59dea4111afdc0d6b5b1bb88a40785dd96e80a.tar.gz |
lib/bb/ui/crumbs/hobwidget: use light text in HobIndicator
Dark text on a dark background is difficult to read. Further the design
document uses white text.
(Bitbake rev: a84304ccf06a012817a5e6495d53147efcbed960)
Signed-off-by: Joshua Lock <josh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/ui')
-rw-r--r-- | bitbake/lib/bb/ui/crumbs/hobwidget.py | 2 |
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 0419d27db1..f5997e5b6b 100644 --- a/bitbake/lib/bb/ui/crumbs/hobwidget.py +++ b/bitbake/lib/bb/ui/crumbs/hobwidget.py | |||
@@ -445,7 +445,7 @@ class HobIndicator(gtk.DrawingArea): | |||
445 | x = (w/2)-(textw/2) + 1 | 445 | x = (w/2)-(textw/2) + 1 |
446 | y = (h/2) - (texth/2) + 1 | 446 | y = (h/2) - (texth/2) + 1 |
447 | ctx.move_to(x, y) | 447 | ctx.move_to(x, y) |
448 | self.window.draw_layout(self.style.fg_gc[gtk.STATE_NORMAL], int(x), int(y), layout) | 448 | self.window.draw_layout(self.style.light_gc[gtk.STATE_NORMAL], int(x), int(y), layout) |
449 | 449 | ||
450 | def set_count(self, count): | 450 | def set_count(self, count): |
451 | self.count = count | 451 | self.count = count |