Hey Marco, Plasma, I've been investigating the issue I mentioned before leaving the sprint. As you can see, QQC1.Label stops rendering eventually. https://bugreports.qt.io/browse/QTBUG-58852
I'm sending this e-mail because Kirigami.Label and PlasmaComponents.Label also have this problem (see attached). Any ideas? Cheers, Aleix
import QtQuick 2.1 import QtQuick.Layouts 1.1 import QtQuick.Controls 1.1 import QtQuick.Controls 2.1 as QQC2 import org.kde.kirigami 2.0 as Kirigami import org.kde.plasma.components 2.0 as PlasmaComponents ApplicationWindow { function longText() { var ret = "<ul>" for(var i=0; i<1234; ++i) ret += "<li>hola "+i+"</li>" return ret + "</ul>"; } id: window ScrollView { anchors.fill: parent RowLayout { Label { text: longText() } QQC2.Label { text: longText() } Kirigami.Label { text: longText() } PlasmaComponents.Label { text: "PlasmaComponents:" + longText() } Text { text: longText() } } } }