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/Mail/MailWindow.gml | |
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/Mail/MailWindow.gml')
-rw-r--r-- | Userland/Applications/Mail/MailWindow.gml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/Mail/MailWindow.gml b/Userland/Applications/Mail/MailWindow.gml index 602bf7d609..5f6cadd85e 100644 --- a/Userland/Applications/Mail/MailWindow.gml +++ b/Userland/Applications/Mail/MailWindow.gml @@ -7,7 +7,7 @@ @GUI::HorizontalSplitter { @GUI::TreeView { name: "mailbox_list" - fixed_width: 250 + preferred_width: 250 } @GUI::VerticalSplitter { |