1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-24 21:57:35 +00:00

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) : GScrollableWidget(parent)
{ {
set_fill_with_background_color(true); set_fill_with_background_color(true);
set_background_color(Color::White); set_background_color(Color::MidGray);
set_frame_shape(FrameShape::Container); set_frame_shape(FrameShape::Container);
set_frame_shadow(FrameShadow::Sunken); set_frame_shadow(FrameShadow::Sunken);