From 483bd5dc4e3ecafee54ff608674eb7e6361622b3 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sat, 30 Jul 2011 22:20:59 +0000 Subject: Added UI tiny font, have ui::Bitmap respect its color settings, corrected focus jumping to the next visible sibling when hiding widgets, changed ui::ListItem border appereance. --- src/ui/listitem.cc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/ui/listitem.cc') diff --git a/src/ui/listitem.cc b/src/ui/listitem.cc index 5e58560..dfe0c0e 100644 --- a/src/ui/listitem.cc +++ b/src/ui/listitem.cc @@ -16,6 +16,8 @@ ListItem::ListItem(ListView *parent, const char * text) : Label(parent, text) { listitem_info = 0; listitem_item = 0; + + set_alignment(ui::AlignLeft); } ListItem::~ListItem() { @@ -33,9 +35,11 @@ void ListItem::draw_border() Paint::set_color(color); Paint::draw_border(global_location(), size()); } else if ((static_cast(parent()))->selected() == this) { + Paint::set_color(palette()->foreground()); + } else { Paint::set_color(palette()->border()); - Paint::draw_border(global_location(), size()); } + Paint::draw_border(global_location(), size()); } void ListItem::draw() @@ -48,7 +52,6 @@ void ListItem::draw() } else if (disabled()) { Paint::set_color(palette()->disabled()); - } else { Paint::set_color(palette()->foreground()); } -- cgit v1.2.3