aboutsummaryrefslogtreecommitdiffstats
path: root/src/menu/drawable.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/menu/drawable.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/menu/drawable.cpp b/src/menu/drawable.cpp
index 8bfd5772..5f744e62 100644
--- a/src/menu/drawable.cpp
+++ b/src/menu/drawable.cpp
@@ -32,10 +32,10 @@ namespace usdx
{
}
- void Drawable::draw(void) const
+ void Drawable::repaint(void) const
{
if (visible) {
- on_draw();
+ draw();
}
};