Various Fixes from User Feedback #422

Merged
dan merged 3 commits from emoji into master 2020-11-26 23:05:28 +00:00
1 changed files with 8 additions and 2 deletions
Showing only changes of commit ef58f002b3 - Show all commits

View File

@ -129,12 +129,18 @@ ApplicationWindow {
onBack: { backFn() }
onRightMenu: {
// If a group is selected....
if (gcd.selectedConversation.length == 32) {
theStack.pane = theStack.groupProfilePane
gcd.requestGroupSettings(gcd.selectedConversation)
} else {
theStack.pane = theStack.userProfilePane
gcd.requestPeerSettings(gcd.selectedConversation)
// if a peer is selected..
if (theStack.pane == theStack.userProfilePane) {
theStack.pane = theStack.messagePane
} else {
theStack.pane = theStack.userProfilePane
gcd.requestPeerSettings(gcd.selectedConversation)
}
}
}
}