android: ability to change profile from share dialog, mobile: do not show profile dropdown when there is only one visible profile (#2084)

* android: ability to change profile from share dialog

* icons swap
This commit is contained in:
Stanislav Dmitrenko
2023-03-27 19:58:14 +03:00
committed by GitHub
parent 48b4b23204
commit f5c11b8faf
5 changed files with 65 additions and 16 deletions

View File

@@ -71,7 +71,7 @@ struct ChatListView: View {
.toolbar {
ToolbarItem(placement: .navigationBarLeading) {
Button {
if chatModel.users.count > 1 {
if chatModel.users.filter { u in u.user.activeUser || !u.user.hidden }.count > 1 {
withAnimation {
userPickerVisible.toggle()
}