summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2010-07-25 14:52:51 (GMT)
committerKevin Smith <git@kismith.co.uk>2010-07-25 14:52:51 (GMT)
commit25ba37d0fd3ed298d5a0874718f878668a1be62e (patch)
tree8526d8e7cabe1637969be73ab5de5afdaf651bec /Swift/QtUI/QtChatWindow.cpp
parentaafc6a9b0eb2af64e51943fff89019a937ba137d (diff)
downloadswift-25ba37d0fd3ed298d5a0874718f878668a1be62e.zip
swift-25ba37d0fd3ed298d5a0874718f878668a1be62e.tar.bz2
ChatTabs improvements.
Resolves: #504 Resolves: #507
Diffstat (limited to 'Swift/QtUI/QtChatWindow.cpp')
-rw-r--r--Swift/QtUI/QtChatWindow.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/Swift/QtUI/QtChatWindow.cpp b/Swift/QtUI/QtChatWindow.cpp
index 5e96b3e..fdf1ebc 100644
--- a/Swift/QtUI/QtChatWindow.cpp
+++ b/Swift/QtUI/QtChatWindow.cpp
@@ -96,14 +96,19 @@ void QtChatWindow::handleKeyPressEvent(QKeyEvent* event) {
close();
} else if (
(key == Qt::Key_PageUp && modifiers == Qt::ControlModifier)
- || (key == Qt::Key_Left && modifiers == (Qt::ControlModifier & Qt::ShiftModifier))
+// || (key == Qt::Key_Left && modifiers == (Qt::ControlModifier & Qt::ShiftModifier))
) {
emit requestPreviousTab();
} else if (
(key == Qt::Key_PageDown && modifiers == Qt::ControlModifier)
- || (key == Qt::Key_Right && modifiers == (Qt::ControlModifier & Qt::ShiftModifier))
+// || (key == Qt::Key_Right && modifiers == (Qt::ControlModifier & Qt::ShiftModifier)
+ || (key == Qt::Key_Tab && modifiers == Qt::ControlModifier)
) {
emit requestNextTab();
+ } else if (
+ (key == Qt::Key_A && modifiers == Qt::AltModifier)
+ ) {
+ emit requestActiveTab();
} else if (key == Qt::Key_Tab) {
tabComplete();
} else {