1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 05:47:35 +00:00

LibGUI: Make splitters 1px wider as 3px is slightly too narrow

This commit is contained in:
Andreas Kling 2020-02-11 11:45:01 +01:00
parent 1fc887c576
commit 8a605922bb

View file

@ -39,7 +39,7 @@ Splitter::Splitter(Orientation orientation, Widget* parent)
set_background_role(ColorRole::Button);
set_layout(make<BoxLayout>(orientation));
set_fill_with_background_color(true);
layout()->set_spacing(3);
layout()->set_spacing(4);
}
Splitter::~Splitter()