diff options
Diffstat (limited to 'src/gui/widgets/textfield.cpp')
-rw-r--r-- | src/gui/widgets/textfield.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gui/widgets/textfield.cpp b/src/gui/widgets/textfield.cpp index 603485f65..49d3fd412 100644 --- a/src/gui/widgets/textfield.cpp +++ b/src/gui/widgets/textfield.cpp @@ -206,6 +206,11 @@ void TextField::draw(Graphics *graphics) BLOCK_END("TextField::draw") } +void TextField::safeDraw(Graphics *graphics) +{ + TextField::draw(graphics); +} + void TextField::drawFrame(Graphics *graphics) { BLOCK_START("TextField::drawFrame") |