mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-08-04 06:45:45 +02:00
misc: fix some more background animations
Change-Id: Ie626cfcab08cd5ed69a0465e824238e8ce059868 Gitlab: #710
This commit is contained in:
parent
d11553ff05
commit
c3c7c11297
3 changed files with 4 additions and 3 deletions
|
@ -34,12 +34,13 @@ Item {
|
||||||
property real outerCutRadius: root.height / 2
|
property real outerCutRadius: root.height / 2
|
||||||
property int spinningAnimationDuration: 1000
|
property int spinningAnimationDuration: 1000
|
||||||
|
|
||||||
|
visible: mode !== SpinningAnimation.Mode.Disabled
|
||||||
|
|
||||||
ConicalGradient {
|
ConicalGradient {
|
||||||
id: conicalGradientOne
|
id: conicalGradientOne
|
||||||
|
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
|
|
||||||
visible: mode !== SpinningAnimation.Mode.Disabled
|
|
||||||
angle: 0.0
|
angle: 0.0
|
||||||
gradient: Gradient {
|
gradient: Gradient {
|
||||||
GradientStop { position: 0.5; color: "transparent" }
|
GradientStop { position: 0.5; color: "transparent" }
|
||||||
|
|
|
@ -31,7 +31,7 @@ Row {
|
||||||
|
|
||||||
Timer {
|
Timer {
|
||||||
repeat: true
|
repeat: true
|
||||||
running: true
|
running: root.visible
|
||||||
interval: JamiTheme.typingDotsAnimationInterval
|
interval: JamiTheme.typingDotsAnimationInterval
|
||||||
|
|
||||||
onTriggered: {
|
onTriggered: {
|
||||||
|
|
|
@ -87,7 +87,7 @@ JamiFlickable {
|
||||||
|
|
||||||
SequentialAnimation on opacity {
|
SequentialAnimation on opacity {
|
||||||
loops: Animation.Infinite
|
loops: Animation.Infinite
|
||||||
running: visible
|
running: textArea.cursorVisible
|
||||||
|
|
||||||
NumberAnimation {
|
NumberAnimation {
|
||||||
from: 1
|
from: 1
|
||||||
|
|
Loading…
Add table
Reference in a new issue