Fix click on room setting buttons not working

This commit is contained in:
miruka 2019-12-15 15:23:15 -04:00
parent 88df501f13
commit 5765638466
2 changed files with 2 additions and 1 deletions

View File

@ -83,6 +83,7 @@
## Interface
- Differentiate invited room members
- https://doc.qt.io/qt-5/qml-qtquick-smoothedanimation.html for progress bars
-
- Make all "Cancel" buttons able to cancel running Backend coroutines set

View File

@ -56,7 +56,7 @@ HDrawer {
enabled: ["members", "settings"].includes(modelData)
onClicked: swipeView.currentIndex = index
onClicked: swipeView.currentIndex = Math.min(index, 1)
}
}
}