diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-04-23 02:42:26 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-04-23 02:42:26 +0300 |
commit | a86324d5fb520823ecb35e828dfeccf9ac2bba81 (patch) | |
tree | a1b8fa4d37d718c28515e8ba6f4a0589094d1d49 /src/gui/widgets/tabbedarea.cpp | |
parent | 03e7901322461a881cc59fc321234e1efee0fa0e (diff) | |
download | plus-a86324d5fb520823ecb35e828dfeccf9ac2bba81.tar.gz plus-a86324d5fb520823ecb35e828dfeccf9ac2bba81.tar.bz2 plus-a86324d5fb520823ecb35e828dfeccf9ac2bba81.tar.xz plus-a86324d5fb520823ecb35e828dfeccf9ac2bba81.zip |
By default dont switch tabs by left/right keys.
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(); |