Cura/resources/qml/Account/SyncStateError.qml
2020-05-04 11:26:20 +02:00

38 lines
864 B
QML

import QtQuick 2.10
import QtQuick.Controls 2.3
import UM 1.4 as UM
import Cura 1.1 as Cura
Row // sync state icon + message
{
width: childrenRect.width
height: childrenRect.height
anchors.horizontalCenter: parent.horizontalCenter
spacing: UM.Theme.getSize("narrow_margin").height
UM.RecolorImage
{
id: updateImage
width: 20 * screenScaleFactor
height: width
source: UM.Theme.getIcon("warning_light")
color: palette.text
signal syncingChanged(bool newSyncing)
property double animationDuration: 1500
}
Label
{
id: syncStateSuccessLabel
text: catalog.i18nc("@info", "Something went wrong...\nPlease try again later.")
color: UM.Theme.getColor("text")
font: UM.Theme.getFont("medium")
renderType: Text.NativeRendering
}
}