diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-10-09 22:50:41 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-10-09 22:50:41 +0200 |
commit | 149535efbe5ced135ae16821f97332fb8972c3c5 (patch) | |
tree | eb854f8da8cc947c8ed31bd48455ba6fe70e64c5 /resources | |
parent | Add threads display and prettier highlight to bubbles style (diff) | |
download | nheko-149535efbe5ced135ae16821f97332fb8972c3c5.tar.xz |
Make effect messages stand out more
Diffstat (limited to 'resources')
-rw-r--r-- | resources/qml/ui/TimelineEffects.qml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/resources/qml/ui/TimelineEffects.qml b/resources/qml/ui/TimelineEffects.qml index 4e2acea4..35c54c04 100644 --- a/resources/qml/ui/TimelineEffects.qml +++ b/resources/qml/ui/TimelineEffects.qml @@ -24,7 +24,7 @@ Item { ParticleSystem { id: particleSystem - Component.onCompleted: pause(); + Component.onCompleted: stop(); paused: !effectRoot.shouldEffectsRun running: effectRoot.shouldEffectsRun } @@ -32,7 +32,6 @@ Item { Emitter { id: confettiEmitter - Component.onCompleted: stop(); group: "confetti" width: effectRoot.width * 3/4 enabled: false |