summaryrefslogtreecommitdiff
path: root/src/gui/widgets/listbox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/widgets/listbox.cpp')
-rw-r--r--src/gui/widgets/listbox.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gui/widgets/listbox.cpp b/src/gui/widgets/listbox.cpp
index d4b6f7a76..4d7befa8c 100644
--- a/src/gui/widgets/listbox.cpp
+++ b/src/gui/widgets/listbox.cpp
@@ -272,6 +272,11 @@ void ListBox::keyPressed(KeyEvent &event)
}
}
+void ListBox::safeDraw(Graphics *graphics)
+{
+ ListBox::draw(graphics);
+}
+
// Don't do anything on scrollwheel. ScrollArea will deal with that.
void ListBox::mouseWheelMovedUp(MouseEvent &event A_UNUSED)