useractions: Also adapt weird formatted for loop

GIT_SILENT
master
Alexander Lohnau 11 months ago
parent bffff9470d
commit f9aa624d5b

@ -1799,9 +1799,7 @@ void Window::setShortcut(const QString &_cut)
if (match.hasMatch()) {
const QString base = match.captured(1);
const QString list = match.captured(2);
for (int i = 0;
i < list.length();
++i) {
for (int i = 0; i < list.length(); ++i) {
QKeySequence c(base + list[i]);
if (!c.isEmpty()) {
keys.append(c);

Loading…
Cancel
Save