diff options
author | FrHun <28605587+frhun@users.noreply.github.com> | 2021-09-15 17:56:01 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-11-03 16:13:19 +0100 |
commit | 54605794f97a905c40a56bd18f79abb7e8cdc7bc (patch) | |
tree | 7833a26c4db950bf9a365bccce57baf73518d1ee /Userland/Applications/PixelPaint/LayerPropertiesWidget.cpp | |
parent | a21ea5f10f280433079208da4e953caf531e5def (diff) | |
download | serenity-54605794f97a905c40a56bd18f79abb7e8cdc7bc.zip |
Applications: Remove border from GroupBox margins
Diffstat (limited to 'Userland/Applications/PixelPaint/LayerPropertiesWidget.cpp')
-rw-r--r-- | Userland/Applications/PixelPaint/LayerPropertiesWidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/PixelPaint/LayerPropertiesWidget.cpp b/Userland/Applications/PixelPaint/LayerPropertiesWidget.cpp index c0d1fbbb9d..2983860eea 100644 --- a/Userland/Applications/PixelPaint/LayerPropertiesWidget.cpp +++ b/Userland/Applications/PixelPaint/LayerPropertiesWidget.cpp @@ -25,7 +25,7 @@ LayerPropertiesWidget::LayerPropertiesWidget() auto& group_box = add<GUI::GroupBox>("Layer properties"); auto& layout = group_box.set_layout<GUI::VerticalBoxLayout>(); - layout.set_margins({ 20, 10, 10 }); + layout.set_margins({ 8 }); auto& name_container = group_box.add<GUI::Widget>(); name_container.set_fixed_height(20); |