This commit is contained in:
2026-08-24 16:40:48 +03:00
parent f7e99516bf
commit 32abb8bf0a
73 changed files with 12364 additions and 9292 deletions
+3 -1
View File
@@ -10,7 +10,9 @@ Item {
// Per-button trigger config (from the model). Default: hold-to-activate.
readonly property string triggerModeResolved: (typeof triggerMode !== "undefined" && triggerMode) ? triggerMode : "hold"
readonly property int holdMsResolved: (typeof holdMs !== "undefined" && holdMs > 0) ? holdMs : 800
readonly property bool inputBlocked: status !== 0
readonly property bool latchOn: typeof latchResetEnabled !== "undefined" && latchResetEnabled
readonly property bool inputBlocked: status === 3 || status === 2
|| (status !== 0 && !latchOn)
// Resolved feedback colour/width for the current status (ok / error).
readonly property color okColor: settingsContainer.feedbackOkColor