From a855b61ace6572e19c305cdee7bd080c5f89eb51 Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Tue, 15 Aug 2017 16:19:16 -0600 Subject: Elide the text in the status bar. Otherwise it just runs over the status bar. --- framework/qml/StatusBar.qml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/framework/qml/StatusBar.qml b/framework/qml/StatusBar.qml index bc98843c..6a148fbb 100644 --- a/framework/qml/StatusBar.qml +++ b/framework/qml/StatusBar.qml @@ -70,9 +70,12 @@ Item { Kube.Label { id: descriptionText anchors.horizontalCenter: parent.horizontalCenter + width: parent.width visible: false color: Kube.Colors.disabledTextColor text: root.errorText + elide: Text.ElideRight + maximumLineCount: 1 } Kube.ProgressBar { id: progressBar -- cgit v1.2.3