└── README.md /README.md: -------------------------------------------------------------------------------- 1 | # Qt Quick Controls 2 2 | 3 | **The Qt Quick Controls 2 module has been moved into qtdeclarative.git.** 4 | 5 | ## Why? 6 | 7 | The motivation for the move is explained here: 8 | 9 | https://bugreports.qt.io/browse/QTBUG-79454 10 | 11 | There was then a contributor summit session: 12 | 13 | https://wiki.qt.io/QtCS2021_-_Testing_upstream_changes_with_downstream_modules 14 | 15 | The conclusion from this was that the best solution would be to move qtquickcontrols2 into qtdeclarative. 16 | 17 | ## Going back in time 18 | 19 | To inspect the code in the `dev` branch prior to its removal, follow these steps: 20 | 21 | ```bash 22 | $ git checkout -b my-dev dev~1 23 | Switched to a new branch 'my-dev' 24 | ``` 25 | --------------------------------------------------------------------------------