diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-10-11 16:52:40 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-10-11 16:52:40 +0200 |
commit | a4491e9630cb175ab8f0fa8cee1c224dbf4ad0e2 (patch) | |
tree | 245bd04ea7415534006976117e81906c3552b727 /Widgets/TerminalWidget.cpp | |
parent | c37ded0ae47c615f1300363b6cb20a68c2aecf91 (diff) | |
download | serenity-a4491e9630cb175ab8f0fa8cee1c224dbf4ad0e2.zip |
More hacking on Widgets.
Diffstat (limited to 'Widgets/TerminalWidget.cpp')
-rw-r--r-- | Widgets/TerminalWidget.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Widgets/TerminalWidget.cpp b/Widgets/TerminalWidget.cpp index c6f7a2307a..0d404b3f45 100644 --- a/Widgets/TerminalWidget.cpp +++ b/Widgets/TerminalWidget.cpp @@ -11,6 +11,8 @@ TerminalWidget* g_tw; TerminalWidget::TerminalWidget(Widget* parent) : Widget(parent) { + setIsWindow(true); + g_tw = this; setRect({ 100, 300, columns() * 8, rows() * 10 }); |