┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinmainwindow.cpp
diff options
context:
space:
mode:
authorMéven Car <[email protected]>2025-06-27 13:30:04 +0200
committerMéven Car <[email protected]>2025-06-27 14:04:19 +0200
commitfc9e06426746b5b33d31db68904d4d205537a080 (patch)
treeeb069b30c9bb0ab6a78c6ceb23efaa0e60d67e26 /src/dolphinmainwindow.cpp
parent2e40aef45245bcc14bef59c4b93998d7ae2b0195 (diff)
dolphinmainwindow: zoom action is now a KToolBarPopupAction
It has no menu() but popupMenu() instead.
Diffstat (limited to 'src/dolphinmainwindow.cpp')
-rw-r--r--src/dolphinmainwindow.cpp2
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();
}