Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/listitem.cc')
-rw-r--r--src/ui/listitem.cc7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/ui/listitem.cc b/src/ui/listitem.cc
index dfe0c0e..a5d033a 100644
--- a/src/ui/listitem.cc
+++ b/src/ui/listitem.cc
@@ -47,11 +47,10 @@ void ListItem::draw()
if (!text().size())
return;
- if (has_mouse_focus() || ((static_cast<ListView *>(parent()))->selected() == this)) {
- Paint::set_color(palette()->highlight());
-
- } else if (disabled()) {
+ if (disabled()) {
Paint::set_color(palette()->disabled());
+ } else if (((static_cast<ListView *>(parent()))->selected() == this)) {
+ Paint::set_color(palette()->highlight());
} else {
Paint::set_color(palette()->foreground());
}