Merge pull request #1345 from q234rty/master

Fix some leftover menus from #1319
This commit is contained in:
DeepBlueV7.X 2023-01-31 19:54:26 +01:00 committed by GitHub
commit 8c06460e91
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 0 deletions

View file

@ -20,6 +20,14 @@ Page {
property int avatarSize: Math.ceil(fontMetrics.lineSpacing * 1.6)
property bool collapsed: false
// HACK: https://bugreports.qt.io/browse/QTBUG-83972, qtwayland cannot auto hide menu
Connections {
function onHideMenu() {
communityContextMenu.close()
}
target: MainWindow
}
ListView {
id: communitiesList

View file

@ -29,6 +29,7 @@ Item {
Connections {
function onHideMenu() {
messageContextMenu.close()
replyContextMenu.close()
}
target: MainWindow
}