diff options
| author | Méven Car <[email protected]> | 2025-06-27 13:30:04 +0200 |
|---|---|---|
| committer | Méven Car <[email protected]> | 2025-06-27 14:04:19 +0200 |
| commit | fc9e06426746b5b33d31db68904d4d205537a080 (patch) | |
| tree | eb069b30c9bb0ab6a78c6ceb23efaa0e60d67e26 /src | |
| parent | 2e40aef45245bcc14bef59c4b93998d7ae2b0195 (diff) | |
dolphinmainwindow: zoom action is now a KToolBarPopupAction
It has no menu() but popupMenu() instead.
Diffstat (limited to 'src')
| -rw-r--r-- | src/dolphinmainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index 2697b12fb..78560d820 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -1511,7 +1511,7 @@ void DolphinMainWindow::updateHamburgerMenu() menu = new QMenu(this); hamburgerMenu->setMenu(menu); hamburgerMenu->hideActionsOf(ac->action(QStringLiteral("basic_actions"))->menu()); - hamburgerMenu->hideActionsOf(ac->action(QStringLiteral("zoom"))->menu()); + hamburgerMenu->hideActionsOf(qobject_cast<KToolBarPopupAction *>(ac->action(QStringLiteral("zoom")))->popupMenu()); } else { menu->clear(); } |
