From 45aeba15c80afb9b721e547da1b32c4849109532 Mon Sep 17 00:00:00 2001 From: networkException Date: Sun, 11 Sep 2022 15:53:06 +0200 Subject: [PATCH] CharacterMap: Allow resizing the unicode block list Previously we would constrain the unicode block list to a width of 175, causing it to stick to the splitter when manually resizing. This patch allows resizing the list properly while retaining the new width when resizing the window. --- Userland/Applications/CharacterMap/CharacterMapWindow.gml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Userland/Applications/CharacterMap/CharacterMapWindow.gml b/Userland/Applications/CharacterMap/CharacterMapWindow.gml index d4e73d1336..230ea6921e 100644 --- a/Userland/Applications/CharacterMap/CharacterMapWindow.gml +++ b/Userland/Applications/CharacterMap/CharacterMapWindow.gml @@ -30,7 +30,7 @@ } @GUI::HorizontalSplitter { - fixed_resizee: "Second" + opportunistic_resizee: "First" @GUI::Widget { layout: @GUI::VerticalBoxLayout {} @@ -59,7 +59,7 @@ } @GUI::ListView { - max_width: 175 + preferred_width: 175 name: "unicode_block_listview" } }