From 8b901251b8f75ea57b4e498f65c08681c954a2d0 Mon Sep 17 00:00:00 2001 From: restitux Date: Thu, 1 Sep 2022 20:14:49 -0400 Subject: [PATCH] Add ptext wrapping and elision to description --- layouts/components/ContentView.qml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/layouts/components/ContentView.qml b/layouts/components/ContentView.qml index ca19346..e88397f 100644 --- a/layouts/components/ContentView.qml +++ b/layouts/components/ContentView.qml @@ -55,6 +55,10 @@ TabView { text: elementColumn.children[ySelect].provider.getShow(xSelect).description font.pointSize: 13 color: "#cdd7d9" + width: tabView.parent.width * 0.6 + wrapMode: Text.WordWrap + maximumLineCount: 4 + elide: Text.ElideRight } } }