summaryrefslogtreecommitdiffstats
path: root/src/control
diff options
context:
space:
mode:
authorDaniel Schürmann <daschuer@mixxx.org>2020-08-31 15:32:25 +0200
committerDaniel Schürmann <daschuer@mixxx.org>2020-08-31 15:32:25 +0200
commit64d31eb66d096802bcdc542b92d14e5af8db62d2 (patch)
tree2f189972dd0ce08de6402885f6ba92144e7124b5 /src/control
parent4984ab8edfd541a82687e31fb33f3de30821c4c3 (diff)
parent6c5bc4d43d2f8aed3e7ab4a789e5bc0285657c44 (diff)
Merge remote-tracking branch 'upstream/2.3'
Diffstat (limited to 'src/control')
-rw-r--r--src/control/control.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/control/control.h b/src/control/control.h
index fb7c5abfc3..da89fafb06 100644
--- a/src/control/control.h
+++ b/src/control/control.h
@@ -23,6 +23,7 @@ enum class ControlFlag {
NoAssertIfMissing = 1 << 1,
/// Don't log a warning when trying to access a non-existing CO.
NoWarnIfMissing = (1 << 2) | NoAssertIfMissing,
+ AllowMissingOrInvalid = AllowInvalidKey | NoAssertIfMissing,
};
Q_DECLARE_FLAGS(ControlFlags, ControlFlag)