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 7 additions and 0 deletions
Showing only changes of commit 1d86c3d326 - Show all commits

View File

@ -60,7 +60,14 @@ Opaque.SettingsList { // settingsPane
onClicked: {
gcd.savePeerSettings(txtOnion.text, txtDisplayName.text)
toolbar.setTitle(txtDisplayName.text)
// FIXME this is kind of a hack as ideally we could just update the peer name
// and have that change broadcast to each message - but there isn't an easy way to do that
// with our current message model setup. As such we simply reset and reload the message pane
gcd.broadcast("ResetMessagePane")
theStack.pane = theStack.messagePane
mm.setHandle(txtOnion.text)
gcd.loadMessagesPane(txtOnion.text)
}
}
}