# HG changeset patch # User Torsten # Date 1381530272 -7200 # Node ID e693b2622f7205b998f630b51a06a314236de167 # Parent cd79bb815eb1c5ef8f19b2923317b74f4db2ce46 fix ambigous editor shortcut for uncommenting * file-editor.cc(set_shortcut): Ctrl-Shift-R instead of Ctrl-T (qscintilla) diff -r cd79bb815eb1 -r e693b2622f72 libgui/src/m-editor/file-editor.cc --- 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);