diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-04-11 04:01:17 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-04-11 04:01:17 +0200 |
commit | c71ece77fab1ae568acbc14a7a9c756a84e62470 (patch) | |
tree | 1ad3290d552a75350be3d7befeded4f190577f95 /Applications/VisualBuilder/VBForm.cpp | |
parent | c6ffb3e2b87d1a1564cc3e1c4ab840f3ea8c9ec3 (diff) | |
download | serenity-c71ece77fab1ae568acbc14a7a9c756a84e62470.zip |
VisualBuilder: Tweak grid size and add an (empty) toolbox window.
Diffstat (limited to 'Applications/VisualBuilder/VBForm.cpp')
-rw-r--r-- | Applications/VisualBuilder/VBForm.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Applications/VisualBuilder/VBForm.cpp b/Applications/VisualBuilder/VBForm.cpp index a0f6e3946f..380a27b862 100644 --- a/Applications/VisualBuilder/VBForm.cpp +++ b/Applications/VisualBuilder/VBForm.cpp @@ -11,15 +11,15 @@ VBForm::VBForm(const String& name, GWidget* parent) set_greedy_for_hits(true); auto box1 = VBWidget::create(WidgetType::GSpinBox, *this); - box1->set_rect({ 10, 10, 61, 21 }); + box1->set_rect({ 10, 10, 81, 25 }); m_widgets.append(move(box1)); auto box2 = VBWidget::create(WidgetType::GTextEditor, *this); - box2->set_rect({ 100, 100, 161, 141 }); + box2->set_rect({ 100, 100, 161, 161 }); m_widgets.append(move(box2)); auto button1 = VBWidget::create(WidgetType::GButton, *this); - button1->set_rect({ 200, 50, 101, 21 }); + button1->set_rect({ 200, 50, 81, 25 }); m_widgets.append(move(button1)); } |