diff options
Diffstat (limited to 'src/gui/widgets/tabbedarea.cpp')
-rw-r--r-- | src/gui/widgets/tabbedarea.cpp | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/src/gui/widgets/tabbedarea.cpp b/src/gui/widgets/tabbedarea.cpp index b24ae32e5..5896af304 100644 --- a/src/gui/widgets/tabbedarea.cpp +++ b/src/gui/widgets/tabbedarea.cpp @@ -34,14 +34,15 @@ #include "debug.h" -TabbedArea::TabbedArea() - : gcn::TabbedArea(), - mTabsWidth(0), - mVisibleTabsWidth(0), - mTabScrollIndex(0), - mEnableScrollButtons(false), - mRightMargin(0), - mFollowDownScroll(false) +TabbedArea::TabbedArea() : + gcn::TabbedArea(), + mTabsWidth(0), + mVisibleTabsWidth(0), + mTabScrollIndex(0), + mEnableScrollButtons(false), + mRightMargin(0), + mFollowDownScroll(false), + mBlockSwitching(true) { mWidgetContainer->setOpaque(false); addWidgetListener(this); @@ -482,7 +483,7 @@ void TabbedArea::removeAll() void TabbedArea::keyPressed(gcn::KeyEvent& keyEvent) { - if (keyEvent.isConsumed() || !isFocused()) + if (mBlockSwitching || keyEvent.isConsumed() || !isFocused()) return; int actionId = static_cast<KeyEvent*>(&keyEvent)->getActionId(); |