feat: add setting to pulse split input on self message received (#6380)

This commit is contained in:
pajlada
2025-08-18 01:24:39 +02:00
committed by GitHub
parent 1b9ed11a67
commit 1afac3382e
15 changed files with 136 additions and 13 deletions
+5
View File
@@ -285,6 +285,11 @@ public:
false,
};
BoolSetting pulseTextInputOnSelfMessage = {
"/appearance/pulseTextInputOnSelfMessage",
false,
};
/// Behaviour
BoolSetting allowDuplicateMessages = {"/behaviour/allowDuplicateMessages",
true};
+1
View File
@@ -205,6 +205,7 @@ void parseSplits(const QJsonObject &splits, const QJsonObject &splitsFallback,
const auto input = splits["input"_L1].toObject();
const auto inputFallback = splitsFallback["input"_L1].toObject();
parseColor(theme.splits, input, background);
parseColor(theme.splits, input, backgroundPulse);
parseColor(theme.splits, input, text);
}
}
+2
View File
@@ -146,7 +146,9 @@ public:
struct {
QColor background;
QColor backgroundPulse;
QColor text;
// Used by the ChatterListWidget & QuickSwitcherPopup
QString styleSheet;
} input;
} splits;