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/HexEditor | |
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/HexEditor')
-rw-r--r-- | Userland/Applications/HexEditor/HexEditorWindow.gml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Applications/HexEditor/HexEditorWindow.gml b/Userland/Applications/HexEditor/HexEditorWindow.gml index e673aff099..0b7a4e89ee 100644 --- a/Userland/Applications/HexEditor/HexEditorWindow.gml +++ b/Userland/Applications/HexEditor/HexEditorWindow.gml @@ -14,6 +14,8 @@ } @GUI::HorizontalSplitter { + opportunistic_resizee: "First" + @HexEditor::HexEditor { name: "editor" } |