diff options
Diffstat (limited to 'mobile-widgets')
-rw-r--r-- | mobile-widgets/qml/main.qml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml index 92ee7e075..d12c0df41 100644 --- a/mobile-widgets/qml/main.qml +++ b/mobile-widgets/qml/main.qml @@ -229,6 +229,21 @@ Kirigami.ApplicationWindow { font.weight: Font.Normal } } + RowLayout { + Layout.leftMargin: Kirigami.Units.smallSpacing + Layout.topMargin: 0 + Kirigami.Heading { + Layout.fillWidth: true + Layout.topMargin: 0 + visible: text.length > 0 + level: 5 + color: "white" + text: manager.syncState + wrapMode: Text.NoWrap + elide: Text.ElideRight + font.weight: Font.Normal + } + } } } |