Index: sources/gui/qml/components/NotificationBar.qml =================================================================== diff -u -r0cfc05c548b7ef581ed1a7bd50a040654c252ca3 -rc66e8e38c6c26cf108c975a7b068e45fe5b56f89 --- sources/gui/qml/components/NotificationBar.qml (.../NotificationBar.qml) (revision 0cfc05c548b7ef581ed1a7bd50a040654c252ca3) +++ sources/gui/qml/components/NotificationBar.qml (.../NotificationBar.qml) (revision c66e8e38c6c26cf108c975a7b068e45fe5b56f89) @@ -36,6 +36,21 @@ _bell.source = isSilenced ? "qrc:/images/bell-off.svg" : "qrc:/images/bell.svg" } + Timer { + id: _timer + interval: 1000; + running: false; + repeat: true; + onTriggered: { + _root.visible = !_root.visible; + + } + } + + function setFlashing(enable) { + _timer.running = enable; + } + visible : _text.text height : Variables.notificationHeight