1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2026-01-14 12:21:00 +00:00
serenity/Userland/Applications/GamesSettings/CardSettingsWidget.gml
thankyouverycool 02d94a303c Base+Userland: Apply Human Interface Guidelines to Object text
Corrects a slew of titles, buttons, labels, menu items and status bars
for capitalization, ellipses and punctuation.

Rewords a few actions and dialogs to use uniform language and
punctuation.
2023-05-23 05:59:49 +02:00

36 lines
751 B
Text

@GUI::Frame {
fill_with_background_color: true
layout: @GUI::VerticalBoxLayout {
margins: [8]
}
@GamesSettings::CardGamePreview {
name: "cards_preview"
fill_with_background_color: true
fixed_height: 160
}
@GUI::GroupBox {
title: "Background color"
max_height: "shrink"
layout: @GUI::VerticalBoxLayout {
margins: [8]
}
@GUI::ColorInput {
name: "cards_background_color"
has_alpha_channel: false
}
}
@GUI::GroupBox {
title: "Card back"
layout: @GUI::VerticalBoxLayout {
margins: [8]
}
@GUI::IconView {
name: "cards_back_image"
}
}
}