1
0
Fork 0
mirror of https://git.jami.net/savoirfairelinux/jami-client-qt.git synced 2025-07-12 19:45:23 +02:00

revoke dialog: fix text color

Change-Id: I61bc0ed71d79bdd268d19d7dccadb44350766b26
GitLab: #519
This commit is contained in:
Sébastien Blin 2021-10-01 15:11:57 -04:00
parent 86fbe7d000
commit d0ae6190bf
No known key found for this signature in database
GPG key ID: C894BB01EEB2A9A9
2 changed files with 3 additions and 1 deletions

View file

@ -426,6 +426,7 @@ Item {
// PasswordDialog
property string enterPassword: qsTr("Enter the password")
property string enterCurrentPassword: qsTr("Enter current password")
property string confirmRemoval: qsTr("Enter this account's password to confirm the removal of this device")
property string enterNewPassword: qsTr("Enter new password")
property string confirmNewPassword: qsTr("Confirm new password")
property string change: qsTr("Change")

View file

@ -59,7 +59,8 @@ BaseDialog {
Layout.alignment: Qt.AlignHCenter
Layout.preferredWidth: revokeDeviceContentRect.width - JamiTheme.preferredMarginSize * 2
text: qsTr("Enter this account's password to confirm the removal of this device")
color: JamiTheme.textColor
text: JamiStrings.confirmRemoval
font.pointSize: JamiTheme.textFontSize
font.kerning: true
wrapMode: Text.Wrap