From 3d55d182704e2c2b01aa3e5fc159507e322dd281 Mon Sep 17 00:00:00 2001 From: Shawn Rutledge Date: Wed, 13 Mar 2019 09:50:14 +0100 Subject: Add BoundaryRule MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [ChangeLog][Qt Labs Animation] Added the BoundaryRule QML type, a PropertyValueInterceptor that restricts the range of values a numeric property can have, applies "resistance" when the value is overshooting, and provides the ability to animate it back within range. Change-Id: I677b407a351c12b0c5b23c34a45933154310c2cd Reviewed-by: Jan Arve Sæther --- src/imports/imports.pro | 1 + 1 file changed, 1 insertion(+) (limited to 'src/imports/imports.pro') diff --git a/src/imports/imports.pro b/src/imports/imports.pro index 24e93fec1c..9b1cfa6aa8 100644 --- a/src/imports/imports.pro +++ b/src/imports/imports.pro @@ -4,6 +4,7 @@ SUBDIRS += \ builtins \ qtqml \ models \ + labsanimation \ labsmodels qtConfig(thread): SUBDIRS += folderlistmodel -- cgit v1.2.3 From ae31808f2f47cf1b9fe1b995e79b8eaef355441d Mon Sep 17 00:00:00 2001 From: Richard Weickelt Date: Tue, 30 Apr 2019 00:23:14 +0200 Subject: Fix error when building qtdeclarative without Qt Quick Qt Labs Animation requires Qt Quick, but was unconditionally built even when Qt Quick was not present. Change-Id: Idf5093574e409e91b7a662f41f18101907746c6a Reviewed-by: Shawn Rutledge --- src/imports/imports.pro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/imports/imports.pro') diff --git a/src/imports/imports.pro b/src/imports/imports.pro index 9b1cfa6aa8..901c263be5 100644 --- a/src/imports/imports.pro +++ b/src/imports/imports.pro @@ -4,7 +4,6 @@ SUBDIRS += \ builtins \ qtqml \ models \ - labsanimation \ labsmodels qtConfig(thread): SUBDIRS += folderlistmodel @@ -16,6 +15,7 @@ qtHaveModule(quick) { QT_FOR_CONFIG += quick-private SUBDIRS += \ + labsanimation \ layouts \ qtquick2 \ window \ -- cgit v1.2.3