diff options
author | thankyouverycool <66646555+thankyouverycool@users.noreply.github.com> | 2022-08-30 07:38:20 -0400 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-08-30 16:28:44 +0100 |
commit | cce9172cd42aa581206329d2a6aa825322f50bbe (patch) | |
tree | 65bbaf667625ec1442f01d36d23a100c2ded9026 /Userland/Applications/Spreadsheet | |
parent | 6cedb1b9d9794addae1879f5c8c39319fa6a2a10 (diff) | |
download | serenity-cce9172cd42aa581206329d2a6aa825322f50bbe.zip |
Applications+DevTools: Remove fixed sizes from Splitters
And adjust some GML properties. Since a808cfa, splitters grow
opportunistically. Setting them to fixed sizes now quite literally
fixes them in place. Fixes immovable splitters missed in the
aforementioned commit.
Diffstat (limited to 'Userland/Applications/Spreadsheet')
-rw-r--r-- | Userland/Applications/Spreadsheet/SpreadsheetWidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/Spreadsheet/SpreadsheetWidget.cpp b/Userland/Applications/Spreadsheet/SpreadsheetWidget.cpp index f35fc2a34e..33fc5a0633 100644 --- a/Userland/Applications/Spreadsheet/SpreadsheetWidget.cpp +++ b/Userland/Applications/Spreadsheet/SpreadsheetWidget.cpp @@ -38,7 +38,7 @@ SpreadsheetWidget::SpreadsheetWidget(GUI::Window& parent_window, NonnullRefPtrVe auto& top_bar = container.add<GUI::Frame>(); top_bar.set_layout<GUI::HorizontalBoxLayout>().set_spacing(1); - top_bar.set_fixed_height(26); + top_bar.set_preferred_height(26); auto& current_cell_label = top_bar.add<GUI::Label>(""); current_cell_label.set_fixed_width(50); |