1. 24 Jan, 2017 - 4 commits
  2. 22 Jan, 2017 - 3 commits
  3. 20 Jan, 2017 - 3 commits
    • Robin Burchell's avatar
      tst_qqmlecmascript: Add some simple coverage for instanceof · b3629b4c
      Robin Burchell authored
      
      Since I'm working on this, it is nice to have some simple verification
      that things are working. I don't expect this to provide full coverage,
      but it should at least make sure that the basics are ok, and nicely
      provides a place to put further tests if it ever somehow breaks.
      
      Change-Id: If91154dee836cc514515bde122e48b271de22676
      Reviewed-by: default avatarLars Knoll <lars.knoll@qt.io>
      b3629b4c
    • Liang Qi's avatar
      qmltest: added layout/tst_layout.qml and related files · 0b1d4983
      Liang Qi authored
      
      They are moved from qtquickcontrols:tests/auto/controls in 3437fd56.
      
      Task-number: QTBUG-58294
      Change-Id: I281d4e505b2f699154dd4efb7a4601bdf3856295
      Reviewed-by: default avatarShawn Rutledge <shawn.rutledge@qt.io>
      0b1d4983
    • Oleg Yadrov's avatar
      PathAnimation: fix bug when PathSvg or PathLine is the last item in Path · 7ee15ecd
      Oleg Yadrov authored
      
      Both QQuickPathLine and QQuickPathSvg inherit QQuickCurve class which
      has “x” and “y” properties that return qreal type, but internally they
      are stored as QQmlNullableValue<qreal>. At the same time, if any of them
      is not specified explicitly, its getter returns 0.
      
      QQuickPath processes QQuickPath%Type% objects and produces a
      QPainterPath which later used by QQuickPathAnimation.
      QQuickPathAnimation only created a QAbstractAnimationJob if
      QQuickPath::hasEnd returned true, and hasEnd returned true only if both
      “x” and “y” were specified explicitly.
      
      All that in conjunction led to the situation when if you had either
      - a PathLine with unspecified “x” or “y”; or
      - a PathSvg
      which was the last (or the only) path element in your Path,
      PathAnimation would not start.
      This patch removes hasEnd check, it should be safe to do because
      QPainterPath is always valid anyway due to the fact QQuickCurve::x()
      and QQuickCurve::y() return 0 if they have not been not explicitly set.
      
      Task-number: QTBUG-57666
      Change-Id: Id320aaeb5aff0964d6493b7b80d5d9a7d36acce8
      Reviewed-by: default avatarRobin Burchell <robin.burchell@crimson.no>
      7ee15ecd
  4. 19 Jan, 2017 - 3 commits
  5. 18 Jan, 2017 - 5 commits
  6. 17 Jan, 2017 - 6 commits
  7. 16 Jan, 2017 - 12 commits
  8. 15 Jan, 2017 - 1 commit
  9. 14 Jan, 2017 - 3 commits