2020-07-30 20:46:25 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import "."
|
|
|
|
|
2021-04-26 10:25:01 +00:00
|
|
|
StatusIcon {
|
|
|
|
id: root
|
|
|
|
icon: "loading"
|
2020-08-18 18:46:11 +00:00
|
|
|
height: 17
|
2021-04-26 10:25:01 +00:00
|
|
|
width: 17
|
2020-07-30 20:46:25 +00:00
|
|
|
RotationAnimator {
|
2021-04-26 10:25:01 +00:00
|
|
|
target: root;
|
2020-07-30 20:46:25 +00:00
|
|
|
from: 0;
|
|
|
|
to: 360;
|
|
|
|
duration: 1200
|
|
|
|
running: true
|
|
|
|
loops: Animation.Infinite
|
|
|
|
}
|
2020-08-18 18:46:11 +00:00
|
|
|
}
|