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

ThemeEditor: Fix layout for new layout system

This commit is contained in:
FrHun 2022-05-26 15:34:32 +02:00 committed by Andreas Kling
parent 93112458b8
commit c2d344bd8c
6 changed files with 6 additions and 6 deletions

View file

@ -468,7 +468,7 @@ void MainWidget::add_property_tab(PropertyTab const& property_tab)
group_box->layout()->set_spacing(12);
// 1px less on the left makes the text line up with the group title.
group_box->layout()->set_margins({ 8, 8, 8, 7 });
group_box->set_shrink_to_fit(true);
group_box->set_preferred_height(GUI::SpecialDimension::Fit);
for (auto const& property : group.properties) {
NonnullRefPtr<GUI::Widget> row_widget = group_box->add<GUI::Widget>();