summaryrefslogtreecommitdiff
path: root/DevTools
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-11-08 21:46:33 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-11-09 00:41:00 +0100
commit803ebdfe9cb4ee5e54bdb8dfad0a145e3bc57395 (patch)
tree0ee15e14cb12fab3ef923e0db82447810351dec2 /DevTools
parente52fe07d2efa3dfaadd5d5fb846003f7157446ca (diff)
downloadserenity-803ebdfe9cb4ee5e54bdb8dfad0a145e3bc57395.zip
HackStudio: Make the FormEditorWidget have a MidGray background
This gives the form editor a VB6-like feeling :^)
Diffstat (limited to 'DevTools')
-rw-r--r--DevTools/HackStudio/FormEditorWidget.cpp2
1 files changed, 1 insertions, 1 deletions
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);