1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:07:45 +00:00

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

View file

@ -1,8 +1,13 @@
@GUI::Frame { @GUI::Frame {
layout: @GUI::VerticalBoxLayout {} layout: @GUI::VerticalBoxLayout {
margins: [2, 0, 0, 0]
}
fill_with_background_color: true fill_with_background_color: true
@GUI::Toolbar { @GUI::Widget {
layout: @GUI::HorizontalBoxLayout {}
preferred_height: "fit"
@GUI::TextBox { @GUI::TextBox {
name: "search_input" name: "search_input"
} }
@ -10,6 +15,7 @@
@GUI::Button { @GUI::Button {
name: "search_button" name: "search_button"
icon: "/res/icons/16x16/find.png" icon: "/res/icons/16x16/find.png"
button_style: "Coolbar"
fixed_width: 22 fixed_width: 22
} }
} }