1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-06 14:37:36 +00:00
serenity/Userland/Applications/ThemeEditor/PathProperty.gml
Karol Kosek 67f1ac5de7 ThemeEditor: Use 'open' icon instead of ellipsis on path picker button
The ellipsis seemed a little unclear for me.
2022-05-25 13:42:53 +02:00

24 lines
449 B
Text

@GUI::Frame {
layout: @GUI::HorizontalBoxLayout {
spacing: 4
}
shrink_to_fit: true
@GUI::Label {
name: "name"
text: "Some path"
text_alignment: "CenterLeft"
fixed_width: 200
}
@GUI::TextBox {
name: "path_input"
}
@GUI::Button {
name: "path_picker_button"
fixed_width: 22
icon: "/res/icons/16x16/open.png"
tooltip: "Choose..."
}
}