Skip to content

Commit

Permalink
Fix #3824
Browse files Browse the repository at this point in the history
  • Loading branch information
uglide committed Oct 19, 2018
1 parent db7820a commit dc729a4
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/qml/value-editor/editors/MultilineEditor.qml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,13 @@ ColumnLayout
Layout.fillWidth: true

Text { text: root.fieldLabel }
TextEdit { text: qsTranslate("RDM", "Size: ") + qmlUtils.humanSize(qmlUtils.binaryStringLength(value)); readOnly: true; color: "#ccc" }
TextEdit {
Layout.preferredWidth: 150
text: qsTranslate("RDM", "Size: ") + qmlUtils.humanSize(qmlUtils.binaryStringLength(value));
readOnly: true;
selectByMouse: true
color: "#ccc"
}
Text { id: binaryFlag; text: qsTranslate("RDM","[Binary]"); visible: false; color: "green"; }
Item { Layout.fillWidth: true }

Expand Down

0 comments on commit dc729a4

Please sign in to comment.