1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 04:07:46 +00:00

GamesSettings+LibCards: Add setting for card-front image sets

This commit is contained in:
Sam Atkins 2023-10-03 17:06:54 +01:00 committed by Sam Atkins
parent 020b858fd0
commit d8e8b300c8
4 changed files with 68 additions and 1 deletions

View file

@ -24,11 +24,33 @@
}
@GUI::GroupBox {
title: "Card back"
title: "Cards"
layout: @GUI::VerticalBoxLayout {
margins: [8]
}
@GUI::Widget {
max_height: "shrink"
layout: @GUI::HorizontalBoxLayout {
margins: [0]
}
@GUI::Label {
text: "Card fronts:"
text_alignment: "CenterLeft"
}
@GUI::ComboBox {
name: "cards_front_image_set"
model_only: true
}
}
@GUI::Label {
text: "Card backs:"
text_alignment: "CenterLeft"
}
@GUI::IconView {
name: "cards_back_image"
}