aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Fabio Bas2011-07-21 17:52:08 +0000
committerGravatar Fabio Bas2011-07-21 17:52:08 +0000
commit9c2ceaa9edfcf65cb373c8d3ceec5ec7f1cb24f9 (patch)
tree942c30d082144490800699c3f366a3b33be9bbc1 /src
parentfix for #1175 + some cleanings in theme save/import/export code (diff)
downloadKVIrc-9c2ceaa9edfcf65cb373c8d3ceec5ec7f1cb24f9.tar.gz
KVIrc-9c2ceaa9edfcf65cb373c8d3ceec5ec7f1cb24f9.tar.bz2
KVIrc-9c2ceaa9edfcf65cb373c8d3ceec5ec7f1cb24f9.zip
temporarly commented out "send as kvs" shortcuts (shift-enter), sinc ethey are causing problem to some users
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5906 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src')
-rw-r--r--src/kvirc/ui/KviInputEditor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kvirc/ui/KviInputEditor.cpp b/src/kvirc/ui/KviInputEditor.cpp
index 5eb18b373..b8429f9fd 100644
--- a/src/kvirc/ui/KviInputEditor.cpp
+++ b/src/kvirc/ui/KviInputEditor.cpp
@@ -1334,8 +1334,8 @@ void KviInputEditor::installShortcuts()
new QShortcut(QKeySequence(KVI_SHORTCUTS_WIN_SCROLL_TO_LAST_READ_LINE),this,SLOT(scrollToLastReadLine()),0,Qt::WidgetShortcut);
new QShortcut(QKeySequence(KVI_SHORTCUTS_INPUT_SEND_PLAIN),this,SLOT(sendPlain()),0,Qt::WidgetShortcut);
new QShortcut(QKeySequence(KVI_SHORTCUTS_INPUT_SEND_PLAIN_2),this,SLOT(sendPlain()),0,Qt::WidgetShortcut);
- new QShortcut(QKeySequence(KVI_SHORTCUTS_INPUT_SEND_KVS),this,SLOT(sendKvs()),0,Qt::WidgetShortcut);
- new QShortcut(QKeySequence(KVI_SHORTCUTS_INPUT_SEND_KVS_2),this,SLOT(sendKvs()),0,Qt::WidgetShortcut);
+// new QShortcut(QKeySequence(KVI_SHORTCUTS_INPUT_SEND_KVS),this,SLOT(sendKvs()),0,Qt::WidgetShortcut);
+// new QShortcut(QKeySequence(KVI_SHORTCUTS_INPUT_SEND_KVS_2),this,SLOT(sendKvs()),0,Qt::WidgetShortcut);
new QShortcut(QKeySequence(KVI_SHORTCUTS_INPUT_HOME),this,SLOT(homeInternal()),0,Qt::WidgetShortcut);
new QShortcut(QKeySequence(KVI_SHORTCUTS_INPUT_END),this,SLOT(endInternal()),0,Qt::WidgetShortcut);
new QShortcut(QKeySequence(KVI_SHORTCUTS_INPUT_HOME_SELECT),this,SLOT(homeInternalSelection()),0,Qt::WidgetShortcut);