GODT-1314: Limit description field length within 150/800 bounds

This commit is contained in:
Alexander Bilyak
2021-10-07 09:51:59 +00:00
committed by Jakub
parent c5699700b3
commit 9d0368de97
7 changed files with 58 additions and 17 deletions

View File

@ -284,27 +284,47 @@ Item {
colorScheme: root.colorScheme
backend: root.backend
notifications: root.notifications
onBack: {
rightContent.showAccount()
}
}
PortSettings { // 3
colorScheme: root.colorScheme
backend: root.backend
onBack: {
rightContent.showGeneralSettings()
}
}
SMTPSettings { // 4
colorScheme: root.colorScheme
backend: root.backend
onBack: {
rightContent.showGeneralSettings()
}
}
LocalCacheSettings { // 5
colorScheme: root.colorScheme
backend: root.backend
notifications: root.notifications
onBack: {
rightContent.showGeneralSettings()
}
}
HelpView { // 6
colorScheme: root.colorScheme
backend: root.backend
onBack: {
rightContent.showAccount()
}
}
BugReportView { // 7
@ -317,6 +337,10 @@ Item {
if (!user) return ""
return user.addresses[0]
}
onBack: {
rightContent.showHelpView()
}
}
function showAccount () { rightContent.currentIndex = 0 }