diff options
Diffstat (limited to 'src/gui/widgets/textbox.cpp')
-rw-r--r-- | src/gui/widgets/textbox.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gui/widgets/textbox.cpp b/src/gui/widgets/textbox.cpp index 82713ec86..60d8bd13b 100644 --- a/src/gui/widgets/textbox.cpp +++ b/src/gui/widgets/textbox.cpp @@ -470,6 +470,11 @@ void TextBox::draw(Graphics* graphics) BLOCK_END("TextBox::draw") } +void TextBox::safeDraw(Graphics* graphics) +{ + TextBox::draw(graphics); +} + void TextBox::setForegroundColor(const Color &color) { mForegroundColor = color; |