From 803ebdfe9cb4ee5e54bdb8dfad0a145e3bc57395 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 8 Nov 2019 21:46:33 +0100 Subject: [PATCH] HackStudio: Make the FormEditorWidget have a MidGray background This gives the form editor a VB6-like feeling :^) --- DevTools/HackStudio/FormEditorWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DevTools/HackStudio/FormEditorWidget.cpp b/DevTools/HackStudio/FormEditorWidget.cpp index 14c8294338..80cade9366 100644 --- a/DevTools/HackStudio/FormEditorWidget.cpp +++ b/DevTools/HackStudio/FormEditorWidget.cpp @@ -6,7 +6,7 @@ FormEditorWidget::FormEditorWidget(GWidget* parent) : GScrollableWidget(parent) { set_fill_with_background_color(true); - set_background_color(Color::White); + set_background_color(Color::MidGray); set_frame_shape(FrameShape::Container); set_frame_shadow(FrameShadow::Sunken);