Skip to content

Commit

Permalink
fix ui bug
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelscholle committed Jul 27, 2024
1 parent 4cf6aa0 commit 829f5e2
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions qml/ui/configpopup/openhd_settings/ChooseResolutionDialoque.qml
Original file line number Diff line number Diff line change
Expand Up @@ -158,16 +158,18 @@ Card {
}
}
hasFooter: true
cardFooter: Item {
anchors.fill: parent
RowLayout{
anchors.fill: parent

Button{
cardFooter:
Item {
anchors.horizontalCenter: parent.horizontalCenter
RowLayout {
anchors.horizontalCenter: parent.horizontalCenter // Center the RowLayout horizontally within the parent
spacing: 20 // Add spacing between the buttons (optional)

Button {
Layout.preferredWidth: 150
text: "CANCEL"
onPressed: {
close();
close();
}
}
Button{
Expand Down

0 comments on commit 829f5e2

Please sign in to comment.