Disable minimize to tray except for the ChatPage

pull/1/head
Konstantinos Sideris 7 years ago
parent 4098cf6780
commit 72cba5d9eb
  1. 6
      src/MainWindow.cc

@ -226,7 +226,11 @@ MainWindow::showChatPage(QString userid, QString homeserver, QString token)
void
MainWindow::closeEvent(QCloseEvent *event)
{
if (isVisible() && userSettings_->isTrayEnabled()) {
// Decide whether or not we should enable tray for the current page.
bool pageSupportsTray =
!welcome_page_->isVisible() && !login_page_->isVisible() && !register_page_->isVisible();
if (isVisible() && pageSupportsTray && userSettings_->isTrayEnabled()) {
event->ignore();
hide();
}

Loading…
Cancel
Save