changeset 17639:e693b2622f72

fix ambigous editor shortcut for uncommenting * file-editor.cc(set_shortcut): Ctrl-Shift-R instead of Ctrl-T (qscintilla)
author Torsten <ttl@justmail.de>
date Sat, 12 Oct 2013 00:24:32 +0200
parents cd79bb815eb1
children 482222fe5b35
files libgui/src/m-editor/file-editor.cc
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libgui/src/m-editor/file-editor.cc	Fri Oct 11 15:18:50 2013 -0700
+++ b/libgui/src/m-editor/file-editor.cc	Sat Oct 12 00:24:32 2013 +0200
@@ -1250,7 +1250,7 @@
   if (set)
     {
       _comment_selection_action->setShortcut (Qt::ControlModifier + Qt::Key_R);
-      _uncomment_selection_action->setShortcut (Qt::ControlModifier + Qt::Key_T);
+      _uncomment_selection_action->setShortcut (Qt::SHIFT + Qt::ControlModifier + Qt::Key_R);
 
       _copy_action->setShortcut (QKeySequence::Copy);
       _cut_action->setShortcut (QKeySequence::Cut);