From 3ad498f2e02419ea222378a9dd2f2070e0d4bc60 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 4 Mar 2023 00:22:39 +0100 Subject: CharacterMap: Tweak layout & style of "find character" window --- Userland/Applications/CharacterMap/CharacterSearchWindow.gml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'Userland/Applications/CharacterMap') diff --git a/Userland/Applications/CharacterMap/CharacterSearchWindow.gml b/Userland/Applications/CharacterMap/CharacterSearchWindow.gml index 70d49c415f..6ac9bf4f5a 100644 --- a/Userland/Applications/CharacterMap/CharacterSearchWindow.gml +++ b/Userland/Applications/CharacterMap/CharacterSearchWindow.gml @@ -1,8 +1,13 @@ @GUI::Frame { - layout: @GUI::VerticalBoxLayout {} + layout: @GUI::VerticalBoxLayout { + margins: [2, 0, 0, 0] + } fill_with_background_color: true - @GUI::Toolbar { + @GUI::Widget { + layout: @GUI::HorizontalBoxLayout {} + preferred_height: "fit" + @GUI::TextBox { name: "search_input" } @@ -10,6 +15,7 @@ @GUI::Button { name: "search_button" icon: "/res/icons/16x16/find.png" + button_style: "Coolbar" fixed_width: 22 } } -- cgit v1.2.3