diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2019-10-27 22:01:40 +0100 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2019-11-23 20:06:15 +0100 |
commit | 2055c75f8ba710e8950a55aa3c41a9cec9f26ad7 (patch) | |
tree | 173665c5059b4c878b8c4dd451fd632275d96f36 /resources/qml/delegates/Placeholder.qml | |
parent | Remove unused Qt Module (diff) | |
download | nheko-2055c75f8ba710e8950a55aa3c41a9cec9f26ad7.tar.xz |
Organize qml files a bit
Diffstat (limited to 'resources/qml/delegates/Placeholder.qml')
-rw-r--r-- | resources/qml/delegates/Placeholder.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/delegates/Placeholder.qml b/resources/qml/delegates/Placeholder.qml index 462af2db..171bf18d 100644 --- a/resources/qml/delegates/Placeholder.qml +++ b/resources/qml/delegates/Placeholder.qml @@ -5,6 +5,6 @@ Label { text: qsTr("unimplemented event: ") + model.type textFormat: Text.PlainText wrapMode: Text.Wrap - width: parent.width + width: parent ? parent.width : undefined color: inactiveColors.text } |