From d0cdefff4496fbe2be581bc788c106dc906eefdd Mon Sep 17 00:00:00 2001 From: Eike Hein Date: Wed, 19 Mar 2008 12:03:44 +0000 Subject: [PATCH] Disable another action not relevant to the KPart. svn path=/trunk/KDE/kdebase/apps/konsole/; revision=787503 --- src/ViewManager.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/ViewManager.cpp b/src/ViewManager.cpp index fc00ebdaa..5120845ec 100644 --- a/src/ViewManager.cpp +++ b/src/ViewManager.cpp @@ -599,6 +599,9 @@ void ViewManager::setNavigationMethod(NavigationMethod method) action = collection->action( "split-view-top-bottom" ); if ( action ) action->setEnabled( _navigationMethod != NoNavigation ); + + action = collection->action( "rename-session" ); + if ( action ) action->setEnabled( _navigationMethod != NoNavigation ); } }