From c9fc34f5ff16d266b9cfb03a02e60f4dcd10d016 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 8 Nov 2019 21:48:30 +0100 Subject: [PATCH] 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. --- DevTools/HackStudio/FormWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()