Applications: Remove border from GroupBox margins

This commit is contained in:
FrHun 2021-09-15 17:56:01 +02:00 committed by Andreas Kling
commit 54605794f9
Notes: sideshowbarker 2024-07-18 01:31:29 +09:00
20 changed files with 33 additions and 39 deletions

View file

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