D6226: KKeySequenceWidget: make it possible to record Ctrl+Num+1 as a shortcut.

2017-06-18 Thread David Faure
dfaure added inline comments. INLINE COMMENTS > davidedmundson wrote in kkeysequencewidget.cpp:778 > Should this section be using ShiftModifier? Qt::SHIFT has been masked out qglobal.h: SHIFT = Qt::ShiftModifier so it's the same (in case your sentence was making a difference about the t

D6226: KKeySequenceWidget: make it possible to record Ctrl+Num+1 as a shortcut.

2017-06-18 Thread David Edmundson
davidedmundson added inline comments. INLINE COMMENTS > kkeysequencewidget.cpp:778 > if (keyQt) { > if ((keyQt == Qt::Key_Backtab) && (d->modifierKeys & Qt::SHIFT)) > { > keyQt = Qt::Key_Tab | d->modifierKeys; Should this section be using ShiftModifier? Qt

D6226: KKeySequenceWidget: make it possible to record Ctrl+Num+1 as a shortcut.

2017-06-16 Thread David Faure
dfaure closed this revision. REPOSITORY R263 KXmlGui REVISION DETAIL https://phabricator.kde.org/D6226 To: dfaure, aacid Cc: apol, #frameworks

D6226: KKeySequenceWidget: make it possible to record Ctrl+Num+1 as a shortcut.

2017-06-15 Thread Albert Astals Cid
aacid accepted this revision. This revision is now accepted and ready to land. REPOSITORY R263 KXmlGui BRANCH master REVISION DETAIL https://phabricator.kde.org/D6226 To: dfaure, aacid Cc: apol, #frameworks

D6226: KKeySequenceWidget: make it possible to record Ctrl+Num+1 as a shortcut.

2017-06-15 Thread Aleix Pol Gonzalez
apol added a comment. +1 makes sense REPOSITORY R263 KXmlGui REVISION DETAIL https://phabricator.kde.org/D6226 To: dfaure Cc: apol, #frameworks

D6226: KKeySequenceWidget: make it possible to record Ctrl+Num+1 as a shortcut.

2017-06-15 Thread David Faure
dfaure created this revision. Restricted Application added a project: Frameworks. Restricted Application added a subscriber: Frameworks. REVISION SUMMARY Qt supports this string representation for Qt::KeypadModifier since 5.1 but this code didn't support that modifier. This is the easy pa