Skip to content

Commit

Permalink
fix: AC share address notification word wrap
Browse files Browse the repository at this point in the history
  • Loading branch information
mprakhov committed Nov 28, 2023
1 parent b47e122 commit 3490c80
Showing 1 changed file with 16 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,23 @@ ActivityNotificationBase {
ColumnLayout {
spacing: 2
Layout.alignment: Qt.AlignTop
Layout.fillWidth: true

StatusMessageHeader {
displayNameLabel.text: qsTr("%1 requires you to share your Accounts").arg(root.communityName)
timestamp: root.notification.timestamp
RowLayout {
StatusBaseText {
Layout.fillWidth: true
verticalAlignment: Text.AlignVCenter
font.weight: Font.Medium
font.pixelSize: Theme.primaryTextFontSize
wrapMode: Text.WordWrap
color: Theme.palette.primaryColor1
text: qsTr("%1 requires you to share your Accounts").arg(root.communityName)
}

StatusTimeStampLabel {
id: timestamp
verticalAlignment: Text.AlignVCenter
timestamp: root.notification.timestamp
}
}

RowLayout {
Expand Down

0 comments on commit 3490c80

Please sign in to comment.