feat: hide all popup menus when press leftbutton on somewhere else

Log: according to the bug on https://bugreports.qt.io/browse/QTBUG-83972, The menu will always stay if not click one of the item. So I try to make a hack for it, wait qt solve it someday
This commit is contained in:
ShootingStarDragons 2023-01-23 20:15:43 +08:00
parent 1d8fc18304
commit 7d95ac23ce
5 changed files with 39 additions and 0 deletions

View file

@ -359,6 +359,16 @@ MainWindow::event(QEvent *event)
return QQuickView::event(event);
}
// HACK: https://bugreports.qt.io/browse/QTBUG-83972, qtwayland cannot auto hide menu
void
MainWindow::mousePressEvent(QMouseEvent *event)
{
if (event->button() == Qt::LeftButton) {
emit hideMenu();
}
return QQuickView::mousePressEvent(event);
}
void
MainWindow::restoreWindowSize()
{

View file

@ -69,6 +69,8 @@ public:
protected:
void closeEvent(QCloseEvent *event);
bool event(QEvent *event) override;
// HACK: https://bugreports.qt.io/browse/QTBUG-83972, qtwayland cannot auto hide menu
void mousePressEvent(QMouseEvent *) override;
private slots:
//! Handle interaction with the tray icon.
@ -77,6 +79,8 @@ private slots:
virtual void setWindowTitle(int notificationCount);
signals:
// HACK: https://bugreports.qt.io/browse/QTBUG-83972, qtwayland cannot auto hide menu
void hideMenu();
void reload();
void secretsChanged();