mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 03:37:43 +00:00
LibGUI: Make splitters 1px wider as 3px is slightly too narrow
This commit is contained in:
parent
1fc887c576
commit
8a605922bb
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ Splitter::Splitter(Orientation orientation, Widget* parent)
|
||||||
set_background_role(ColorRole::Button);
|
set_background_role(ColorRole::Button);
|
||||||
set_layout(make<BoxLayout>(orientation));
|
set_layout(make<BoxLayout>(orientation));
|
||||||
set_fill_with_background_color(true);
|
set_fill_with_background_color(true);
|
||||||
layout()->set_spacing(3);
|
layout()->set_spacing(4);
|
||||||
}
|
}
|
||||||
|
|
||||||
Splitter::~Splitter()
|
Splitter::~Splitter()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue