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/button.cc')
-rw-r--r--src/ui/button.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ui/button.cc b/src/ui/button.cc
index 9e07c09..cba7732 100644
--- a/src/ui/button.cc
+++ b/src/ui/button.cc
@@ -22,6 +22,7 @@ Button::Button(Widget *parent, const char *text, const char *command) : Label(pa
set_label("button");
set_command(command);
set_alignment(AlignCenter);
+ set_background(true);
}
Button::~Button()
@@ -47,6 +48,11 @@ void Button::set_command(const std::string &command)
button_command.assign(command);
}
+void Button::draw_background()
+{
+ Paint::draw_material(global_location(), size(), "ui/button");
+}
+
void Button::draw_border()
{
if (disabled()) {