summaryrefslogtreecommitdiff
path: root/src/gui/widgets/label.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/widgets/label.cpp')
-rw-r--r--src/gui/widgets/label.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gui/widgets/label.cpp b/src/gui/widgets/label.cpp
index 2addac309..abe7b62b6 100644
--- a/src/gui/widgets/label.cpp
+++ b/src/gui/widgets/label.cpp
@@ -186,6 +186,11 @@ void Label::draw(Graphics* graphics)
BLOCK_END("Label::draw")
}
+void Label::safeDraw(Graphics* graphics)
+{
+ Label::draw(graphics);
+}
+
void Label::adjustSize()
{
const Font *const font = getFont();