mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-09 01:06:11 +00:00
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.
37 lines
751 B
Plaintext
37 lines
751 B
Plaintext
@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"
|
|
}
|
|
}
|
|
}
|