Uploaded image for project: 'Qt for MCUs'
  1. Qt for MCUs
  2. QTMCU-65

timeline scale property error C2039: '_qul_inlineTransform'

    XMLWordPrintable

Details

    • Bug
    • Resolution: Invalid
    • Not Evaluated
    • None
    • Qt for MCUs 1.9
    • QML, QUL Team

    Description

      demo code:

      import QtQuick
      import QtQuick.Controls
      import QtQuick.Timeline
      
      Rectangle {
          width: 400
          height: 400
      
          Image {
              id: test
          }
      
          Timeline {
              KeyframeGroup {
                  target: test
                  property: "scale"
                  Keyframe { frame: 0; value: 1.1 }
              }
          }
      }
      

      Temp solution:

      Rectangle {
          width: 400
          height: 400
      
          Image {
              id: test
              scale: 1
          }
      
          Timeline {
              KeyframeGroup {
                  target: test
                  property: "scale"
                  Keyframe { frame: 0; value: 1.1 }
              }
          }
      }
      

      Attachments

        Issue Links

          Activity

            People

              Unassigned Unassigned
              jiu shanheng jiu
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: