From 45c1fbaf488670cd5bf48906333da01005601929 Mon Sep 17 00:00:00 2001 From: Kurt Hindenburg Date: Sun, 18 Oct 2009 22:16:31 +0000 Subject: [PATCH] Fix issue where Shift+Tab would focus tab bar. BUG: 157039 svn path=/trunk/KDE/kdebase/apps/konsole/; revision=1037396 --- src/ViewContainer.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ViewContainer.cpp b/src/ViewContainer.cpp index 2a2bd2a2a..07ee9e999 100644 --- a/src/ViewContainer.cpp +++ b/src/ViewContainer.cpp @@ -429,6 +429,7 @@ TabbedViewContainer::TabbedViewContainer(NavigationPosition position , QObject* _tabBar = new ViewContainerTabBar(_containerWidget,this); _tabBar->setDrawBase(true); _tabBar->setDocumentMode(true); + _tabBar->setFocusPolicy(Qt::ClickFocus); _newTabButton = new QToolButton(_containerWidget); _newTabButton->setIcon(KIcon("tab-new"));