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

Regression: Missing text

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Done
    • Icon: P1: Critical P1: Critical
    • 4.7.2
    • 4.7.2
    • GUI: Text handling
    • None
    • cedb5e0a5bb381ecfe5acc463d96a0c15abe474d

      Run the following qml file with a GL viewport:

      import Qt 4.7
      
      ListView {
          width: 1024; height: 768
          model: 10
          delegate: Item {
              id: menuItem
              width: childrenRect.width; height: childrenRect.height
              scale: 0.5
              opacity: 0.5
      
              states: State {
                  name: 'selected'
                  when: mr.containsMouse
                  PropertyChanges { target: menuItem; scale: 1; opacity:  1 }
              }
      
              Text {
              id: entry
      
              text: "Foobar: " + index + " zoot"
              font.pointSize: 60
              }
              MouseArea {
                  id: mr
                  anchors.fill: parent
                  hoverEnabled: true
              }
          }
      }
      

      When you hover over certain items, the index number will be invisible.

        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

            esabraha Eskil Abrahamsen Blomfeldt
            esabraha Eskil Abrahamsen Blomfeldt
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:

                There are no open Gerrit changes