1
0
Fork 0

shorten activity blink off time

This commit is contained in:
Kevin Matz 2022-12-10 13:21:31 -05:00
parent 0b02bc3c14
commit 99e42dba17
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ void StatusIndicatorWidget::dataActivity()
if (!mBlinkState)
return; // already in a blink state
QTimer::singleShot(150, this, [this]() {
QTimer::singleShot(100, this, [this]() {
mBlinkState = true;
update();
});