mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 22:47:44 +00:00
ThemeEditor: Convert layout to GML
This commit is contained in:
parent
daaf5890a6
commit
c885722a94
3 changed files with 32 additions and 12 deletions
23
Userland/Applications/ThemeEditor/ThemeEditor.gml
Normal file
23
Userland/Applications/ThemeEditor/ThemeEditor.gml
Normal file
|
@ -0,0 +1,23 @@
|
|||
@GUI::Widget {
|
||||
layout: @GUI::VerticalBoxLayout
|
||||
fill_with_background_color: true
|
||||
|
||||
@GUI::Frame {
|
||||
layout: @GUI::HorizontalBoxLayout
|
||||
name: "preview_frame"
|
||||
}
|
||||
|
||||
@GUI::Widget {
|
||||
layout: @GUI::HorizontalBoxLayout
|
||||
fixed_height: 20
|
||||
|
||||
@GUI::ComboBox {
|
||||
name: "color_combo_box"
|
||||
model_only: true
|
||||
}
|
||||
|
||||
@GUI::ColorInput {
|
||||
name: "color_input"
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue