More hacking on Widgets.

This commit is contained in:
Andreas Kling 2018-10-11 16:52:40 +02:00
commit a4491e9630
Notes: sideshowbarker 2024-07-19 18:50:46 +09:00
9 changed files with 150 additions and 2 deletions

View file

@ -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 });