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/label.cc')
-rw-r--r--src/ui/label.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/label.cc b/src/ui/label.cc
index b6f72c7..ef5b14f 100644
--- a/src/ui/label.cc
+++ b/src/ui/label.cc
@@ -58,8 +58,8 @@ void Label::draw()
if (!label_text.size())
return;
- paint::color(palette()->foreground());
- paint::label(global_location(), size(), font(), text(), alignment());
+ Paint::set_color(palette()->foreground());
+ Paint::draw_label(global_location(), size(), font(), text(), alignment());
}
}