aboutsummaryrefslogtreecommitdiff
path: root/gui/console.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gui/console.cpp')
-rw-r--r--gui/console.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/gui/console.cpp b/gui/console.cpp
index 2e1e67d491..9e5abe6b2e 100644
--- a/gui/console.cpp
+++ b/gui/console.cpp
@@ -116,9 +116,6 @@ void ConsoleDialog::slideUpAndClose() {
}
void ConsoleDialog::open() {
- // disable scaling because the console is using non fixed positions
- g_gui.enableScaling(false);
-
// Initiate sliding the console down. We do a very simple trick to achieve
// this effect: we simply move the console dialog just above (outside) the
// visible screen area, then shift it down in handleTickle() over a
@@ -191,7 +188,6 @@ void ConsoleDialog::handleTickle() {
} else if (_slideMode == kUpSlideMode && _y <= -_h) {
// End the slide
_slideMode = kNoSlideMode;
- g_gui.enableScaling(true);
close();
} else
draw();