Skip to content

Commit 065f70e

Browse files
committed
Fix item delegate in table
1 parent fd3d949 commit 065f70e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/resources/qml/ValueTabs.qml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,8 @@ Repeater {
202202
anchors.fill: parent
203203
color: styleData.textColor
204204
elide: styleData.elideMode
205-
text: styleData.value ? binaryUtils.printable(styleData.value) + (truncated ? '...' : '')
205+
text: styleData.value ? binaryUtils.printable(styleData.value)
206+
+ (lineCount > 1 ? '...' : '')
206207
: ""
207208
wrapMode: Text.WrapAnywhere
208209
maximumLineCount: 1

0 commit comments

Comments
 (0)