UI logic tweaking.
This commit is contained in:
parent
1169a0c4d1
commit
3ef1744b5c
|
@ -18,8 +18,8 @@ function pushToStack(stack, page) {
|
|||
if(stack.depth === 1) {
|
||||
stack.replace(page)
|
||||
} else {
|
||||
stack.clear()
|
||||
stack.push(page)
|
||||
stack.pop(null)
|
||||
stack.replace(page)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@ import Matrique.Settings 0.1
|
|||
|
||||
import "component"
|
||||
import "form"
|
||||
import "qrc:/js/util.js" as Util
|
||||
|
||||
ApplicationWindow {
|
||||
readonly property var currentConnection: accountListView.currentConnection ? accountListView.currentConnection : null
|
||||
|
@ -131,7 +132,7 @@ ApplicationWindow {
|
|||
|
||||
hint: user.displayName
|
||||
image: user.avatar
|
||||
defaultColor: Material.accent
|
||||
defaultColor: Util.stringToColor(user.displayName)
|
||||
}
|
||||
|
||||
highlightColor: matriqueController.color(user.id)
|
||||
|
|
Loading…
Reference in New Issue