| Submitter | Joshua Lock |
|---|---|
| Date | April 13, 2012, 11:24 p.m. |
| Message ID | <ec26c73279f25e3f5cc54c51b3de93c7aef09242.1334359239.git.josh@linux.intel.com> |
| Download | mbox | patch |
| Permalink | /patch/25783/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/lib/bb/ui/crumbs/hobwidget.py b/lib/bb/ui/crumbs/hobwidget.py index f878263..7b6e7ae 100644 --- a/lib/bb/ui/crumbs/hobwidget.py +++ b/lib/bb/ui/crumbs/hobwidget.py @@ -429,7 +429,7 @@ class HobIndicator(gtk.DrawingArea): x = (w/2)-(textw/2) + 1 y = (h/2) - (texth/2) + 1 ctx.move_to(x, y) - self.window.draw_layout(self.style.fg_gc[gtk.STATE_NORMAL], int(x), int(y), layout) + self.window.draw_layout(self.style.light_gc[gtk.STATE_NORMAL], int(x), int(y), layout) def set_count(self, count): self.count = count
Dark text on a dark background is difficult to read. Further the design document uses white text. Signed-off-by: Joshua Lock <josh@linux.intel.com> --- lib/bb/ui/crumbs/hobwidget.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)