1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-23 18:05:08 +00:00
serenity/Userland/Applications/ThemeEditor/ThemeEditor.gml
2022-06-17 19:49:16 +01:00

41 lines
882 B
Text

@GUI::Widget {
layout: @GUI::VerticalBoxLayout {}
fill_with_background_color: true
@GUI::Widget {
layout: @GUI::HorizontalBoxLayout {}
@GUI::Frame {
layout: @GUI::HorizontalBoxLayout {}
name: "preview_frame"
}
@GUI::TabWidget {
name: "property_tabs"
}
}
@GUI::Widget {
name: "theme_override_controls"
layout: @GUI::HorizontalBoxLayout {
margins: [0, 4]
}
fixed_height: 30
@GUI::Layout::Spacer {}
@GUI::Button {
name: "reset"
text: "Reset to Previous System Theme"
enabled: false
fixed_width: 190
}
@GUI::Button {
name: "apply"
text: "Apply as System Theme"
enabled: false
fixed_width: 140
}
}
}