Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-58852

Text element with Text NativeRendering stops rendering

    XMLWordPrintable

Details

    Description

      Here's a code that shows a side-by-side comparison on how it stops rendering it eventually.
      A screenshot with the behavior I get.

      import QtQuick 2.1
      import QtQuick.Layouts 1.1
      import QtQuick.Controls 1.1
      
      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()
                  }
                  Text {
                      text: longText()
                  }
              }
          }
      }
      

      Attachments

        Issue Links

          For Gerrit Dashboard: QTBUG-58852
          # Subject Branch Project Status CR V

          Activity

            People

              wearyinside Oleg Yadrov
              apol Aleix Pol
              Votes:
              0 Vote for this issue
              Watchers:
              6 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Gerrit Reviews

                  There are no open Gerrit changes