summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDanilo M. <danix@danix.xyz>2026-08-02 17:08:31 +0200
committerDanilo M. <danix@danix.xyz>2026-08-04 12:52:17 +0200
commitd56d9c35352bec0f1492395f657f2c0b9b0f04a1 (patch)
tree07cd07dfb883769b04c6a33a258ed61b89d8c976 /src
parent83669b23c371ee0bdea178fce9920585dd55704b (diff)
downloadqtmaildir-d56d9c35352bec0f1492395f657f2c0b9b0f04a1.tar.gz
qtmaildir-d56d9c35352bec0f1492395f657f2c0b9b0f04a1.zip
fix: report collisions between INI overrides bound to the same key
loadOverrides() inserted straight into m_bindings, so two override lines that normalize to the same QKeySequence (e.g. "y" and "Y", both "Y" per QKeySequence) silently overwrote each other with zero warning, contradicting the "a typo cannot bind silently" contract on knownActions(). Track sequences seen within the current override pass separately from m_bindings (which already holds the defaults) so overriding a default key stays silent, but two colliding override lines produce one warning naming both actions.
Diffstat (limited to 'src')
-rw-r--r--src/keymap.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/keymap.cpp b/src/keymap.cpp
index 6e43f1b..205d2f5 100644
--- a/src/keymap.cpp
+++ b/src/keymap.cpp
@@ -48,6 +48,14 @@ void KeyMap::loadOverrides(QSettings &settings)
{
const QStringList known = knownActions();
+ // Sequences bound so far *within this override pass*. Defaults already
+ // sit in m_bindings before this runs, so a plain m_bindings.contains()
+ // check would misfire on every legitimate override of a default (e.g.
+ // "j=archive" overriding the default 'j' binding). Only a collision
+ // between two entries in this same pass (e.g. two INI keys that
+ // normalize to the same QKeySequence, such as "y" and "Y") is a bug.
+ QHash<QKeySequence, QString> seenThisPass;
+
settings.beginGroup(QStringLiteral("keys"));
const QStringList keys = settings.childKeys();
for (const QString &key : keys) {
@@ -71,6 +79,16 @@ void KeyMap::loadOverrides(QSettings &settings)
continue;
}
+ const auto previous = seenThisPass.constFind(sequence);
+ if (previous != seenThisPass.constEnd()) {
+ m_warnings.append(
+ QStringLiteral("Key sequence '%1' bound to both '%2' and '%3' "
+ "in [keys]; keeping '%2'")
+ .arg(key, previous.value(), action));
+ continue;
+ }
+ seenThisPass.insert(sequence, action);
+
m_bindings.insert(sequence, action);
}
settings.endGroup();