Skip to content

Commit

Permalink
qml: MessagePopup: Make message bounds explicit
Browse files Browse the repository at this point in the history
  • Loading branch information
tdewey-rpi committed Sep 26, 2024
1 parent 57fbc59 commit c66947d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/MsgPopup.qml
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,13 @@ Popup {
textFormat: Text.StyledText
font.family: roboto.name
Layout.fillHeight: true
Layout.leftMargin: 25
Layout.rightMargin: 25
Layout.topMargin: 25
Layout.fillWidth: true
Layout.leftMargin: 10
Layout.rightMargin: 10
Layout.topMargin: 10
Layout.alignment: Qt.AlignVCenter | Qt.AlignHCenter
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
Accessible.name: text.replace(/<\/?[^>]+(>|$)/g, "")
}

Expand Down

0 comments on commit c66947d

Please sign in to comment.