chore(@main): fix settings saving
do not overwrite `Qt.application.name` with the translated version; use the appropriate `Qt.application.displayName` for the purpose
This commit is contained in:
parent
5be18c2b1d
commit
8c2b4ed89f
|
@ -31,10 +31,11 @@ StatusWindow {
|
||||||
color: Style.current.background
|
color: Style.current.background
|
||||||
title: {
|
title: {
|
||||||
// Set application settings
|
// Set application settings
|
||||||
Qt.application.name = qsTr("Status Desktop")
|
Qt.application.name = "Status Desktop"
|
||||||
|
Qt.application.displayName = qsTr("Status Desktop")
|
||||||
Qt.application.organization = "Status"
|
Qt.application.organization = "Status"
|
||||||
Qt.application.domain = "status.im"
|
Qt.application.domain = "status.im"
|
||||||
return Qt.application.name
|
return Qt.application.displayName
|
||||||
}
|
}
|
||||||
visible: true
|
visible: true
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue