mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-26 19:26:59 +03:00
Make sure the hide/show text in the tray icon menu is correct
This commit is contained in:
parent
23848be6eb
commit
7b4b2fe0f5
2 changed files with 7 additions and 2 deletions
|
@ -715,7 +715,6 @@ void MainWindow::toggleVisibility(QSystemTrayIcon::ActivationReason e) {
|
|||
hide();
|
||||
}
|
||||
}
|
||||
actionToggleVisibility->setText(isVisible() ? tr("Hide") : tr("Show"));
|
||||
}
|
||||
|
||||
// Display About Dialog
|
||||
|
@ -1193,12 +1192,17 @@ void MainWindow::updateAltSpeedsBtn(bool alternative) {
|
|||
actionUse_alternative_speed_limits->setChecked(alternative);
|
||||
}
|
||||
|
||||
void MainWindow::updateTrayIconMenu()
|
||||
{
|
||||
actionToggleVisibility->setText(isVisible() ? tr("Hide") : tr("Show"));
|
||||
}
|
||||
|
||||
QMenu* MainWindow::getTrayIconMenu() {
|
||||
if (myTrayIconMenu)
|
||||
return myTrayIconMenu;
|
||||
// Tray icon Menu
|
||||
myTrayIconMenu = new QMenu(this);
|
||||
actionToggleVisibility->setText(isVisible() ? tr("Hide") : tr("Show"));
|
||||
connect(myTrayIconMenu, SIGNAL(aboutToShow()), SLOT(updateTrayIconMenu()));
|
||||
myTrayIconMenu->addAction(actionToggleVisibility);
|
||||
myTrayIconMenu->addSeparator();
|
||||
myTrayIconMenu->addAction(actionOpen);
|
||||
|
|
|
@ -111,6 +111,7 @@ protected slots:
|
|||
void notifyOfUpdate(QString);
|
||||
void showConnectionSettings();
|
||||
void minimizeWindow();
|
||||
void updateTrayIconMenu();
|
||||
// Keyboard shortcuts
|
||||
void createKeyboardShortcuts();
|
||||
void displayTransferTab() const;
|
||||
|
|
Loading…
Reference in a new issue