diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-11-08 21:48:30 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-11-09 00:41:00 +0100 |
commit | c9fc34f5ff16d266b9cfb03a02e60f4dcd10d016 (patch) | |
tree | 42c16a53636e8d3070fa6bcf0bf99990ca5af178 | |
parent | 803ebdfe9cb4ee5e54bdb8dfad0a145e3bc57395 (diff) | |
download | serenity-c9fc34f5ff16d266b9cfb03a02e60f4dcd10d016.zip |
HackStudio: Tweak the inset of the FormWidget
This is not permanent by any means, just moving things around to get
a feel for how the GUI should look.
-rw-r--r-- | DevTools/HackStudio/FormWidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/DevTools/HackStudio/FormWidget.cpp b/DevTools/HackStudio/FormWidget.cpp index 03d8555ad3..8892e45f44 100644 --- a/DevTools/HackStudio/FormWidget.cpp +++ b/DevTools/HackStudio/FormWidget.cpp @@ -7,7 +7,7 @@ FormWidget::FormWidget(FormEditorWidget& parent) { set_fill_with_background_color(true); set_background_color(Color::WarmGray); - set_relative_rect(20, 20, 400, 300); + set_relative_rect(5, 5, 400, 300); } FormWidget::~FormWidget() |