HackStudio: Make the FormEditorWidget have a MidGray background

This gives the form editor a VB6-like feeling :^)
This commit is contained in:
Andreas Kling 2019-11-08 21:46:33 +01:00
parent e52fe07d2e
commit 803ebdfe9c

View file

@ -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);