1
Fork 0
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:
Sam Atkins 2021-10-27 15:20:35 +01:00 committed by Andreas Kling
parent daaf5890a6
commit c885722a94
3 changed files with 32 additions and 12 deletions

View 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"
}
}
}