moment/src/gui/Base/HBusyIndicator.qml

19 lines
369 B
QML
Raw Normal View History

2019-12-19 07:46:16 -04:00
// SPDX-License-Identifier: LGPL-3.0-or-later
import QtQuick 2.12
HCircleProgressBar {
2020-05-21 19:54:35 -04:00
progress: 0.5
label.visible: false
baseCircle.strokeWidth: 2
progressCircle.strokeWidth: 2
HNumberAnimation on rotation {
from: 0
to: 360
loops: Animation.Infinite
duration: theme ? (theme.animationDuration * 6) : 600
}
}