CharacterMap: Tweak layout & style of "find character" window

This commit is contained in:
Andreas Kling 2023-03-04 00:22:39 +01:00
parent bb4b747424
commit 3ad498f2e0
Notes: sideshowbarker 2024-07-16 23:31:07 +09:00

View File

@ -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
}
}