aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Sqlite: Strict table supportv6.0.1Marco Bubke2021-12-1412-468/+1388
| | | | | | | | | | | | | With Sqlite 3.37 strict tables are introduced: https://www.sqlite.org/stricttables.html The introduce strict column types. So you can not add a text to an integer column anymore. Additionally they introduce the "any" column which is a dynamic type. Change-Id: I43c0410821aa154e7de83e24bd221a232f98e910 Reviewed-by: Tim Jenssen <tim.jenssen@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
* QmlDesigner: Fix broken test ListModelEditor.AddBooleanPropertiesMarco Bubke2021-12-141-2/+2
| | | | | | | | Task-number: QDS-5708 Change-Id: I9961838149da19e3ab8670652e9e246f92b67012 Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io> Reviewed-by: Tim Jenssen <tim.jenssen@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
* Sqlite: Remove virtual interface dependencyMarco Bubke2021-12-146-40/+131
| | | | | | | | | | With C++ 17 it is possible to deduce the template argument from the contructor parameter(CTAD). We then do not call anymore a virtual function but a normal function. Change-Id: I61c3ce22322c66b256afab278e768014401b08cc Reviewed-by: Tim Jenssen <tim.jenssen@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
* Sqlite: Remove flacky testMarco Bubke2021-12-143-36/+1
| | | | | | | | | Because we don't use the function we can remove it. Change-Id: I273a9b56589257b17499f41df02d5e40345f2d4b Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
* QmlDesigner: Make model used for instancing unpickable in 3D editorMiikka Heikkinen2021-12-141-0/+8
| | | | | | | | | | | The base model used for instancing is hidden at render time, so it should not be pickable in 3D editor. Fixes: QDS-5100 Change-Id: I7c58bd8e7e5c9bfbe75dbaff67c0fd99793ad610 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io> Reviewed-by: Samuel Ghinet <samuel.ghinet@qt.io>
* Add change log for 6.0.1Eike Ziller2021-12-141-0/+118
| | | | | Change-Id: Iad77c18758e466a231ed2f54119eb50365aa7d9a Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
* QmlDesigner: Enable component library context menu while searchingMiikka Heikkinen2021-12-143-22/+32
| | | | | | | | | The only item visible in the menu is remove module, as hiding categories during search is not supported. Fixes: QDS-5687 Change-Id: I8f5bb3f1b27eb37ae32d72b93c6ce2156dfa8eb7 Reviewed-by: Mahmoud Badri <mahmoud.badri@qt.io>
* CMake: Only set COMPILE_OPTIONS if target ClangCodeModel existsCristian Adam2021-12-141-1/+1
| | | | | | | | | | | If Qt Creator is configured without Clang the target ClangCodeModel might not exist and CMake configuration would fail. Amends 08cbf13199d41690d3df3ba6535dc08e56dcb321 Change-Id: I1644d183bdcb4d9a6ae65e1257d9be7b7a0e5ff5 Reviewed-by: Marco Bubke <marco.bubke@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
* CMake: SKIP_DEPENDENCY for gtest_add_tests for unittestCristian Adam2021-12-141-1/+1
| | | | | | | | | | | Without SKIP_DEPENDENCY the source files would be treated as cmake list files, which meant that for every source change cmake would have been rerun. Change-Id: Icc087fa951fa7e7aee25504367b6146e66bf9dcb Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Marco Bubke <marco.bubke@qt.io> Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* CMake: Skip AUTOMOC and AUTOUIC for Googletest and Yaml-cppCristian Adam2021-12-142-0/+2
| | | | | | | | | | | These libraries do not use any Qt related technologies, no need to have automoc and autouic enabled. Change-Id: I294a989c200bc8ec937f8aa780ef20a5882e5a56 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Eike Ziller <eike.ziller@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Marco Bubke <marco.bubke@qt.io>
* CMake: Remove uneeded auto moc related rebuilds on done buildsCristian Adam2021-12-141-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When running cmake after a build was done on Windows with MSVC will get more files to build: [1/15 9.0/sec] Running utility command for copy_python_dll [2/15 3.6/sec] Automatic MOC and UIC for target ProjectExplorer [3/15 2.2/sec] Building CXX object src\plugins\projectexplorer\CMakeFiles\ProjectExplorer.dir\sessiondialog.cpp.obj [4/15 2.9/sec] Building CXX object src\plugins\projectexplorer\CMakeFiles\ProjectExplorer.dir\codestylesettingspropertiespage.cpp.obj [5/15 3.6/sec] Building CXX object src\plugins\projectexplorer\CMakeFiles\ProjectExplorer.dir\editorsettingspropertiespage.cpp.obj [6/15 4.1/sec] Building CXX object src\plugins\projectexplorer\CMakeFiles\ProjectExplorer.dir\projectexplorersettingspage.cpp.obj [7/15 4.6/sec] Building CXX object src\plugins\projectexplorer\CMakeFiles\ProjectExplorer.dir\sessionmodel.cpp.obj [8/15 5.1/sec] Building CXX object src\plugins\projectexplorer\CMakeFiles\ProjectExplorer.dir\customparserconfigdialog.cpp.obj [9/15 5.2/sec] Building CXX object src\plugins\projectexplorer\CMakeFiles\ProjectExplorer.dir\projectwizardpage.cpp.obj [10/15 3.4/sec] Building CXX object src\plugins\projectexplorer\CMakeFiles\ProjectExplorer.dir\ProjectExplorer_autogen\mocs_compilation.cpp.obj [11/15 1.6/sec] Building CXX object src\plugins\projectexplorer\CMakeFiles\ProjectExplorer.dir\projectexplorer.cpp.obj [12/15 1.6/sec] Linking CXX shared library lib\qtcreator\plugins\ProjectExplorer.dll When adding "-d explain" to the build parameters ninja would print: ninja explain: restat of output src/plugins/projectexplorer/ProjectExplorer_autogen/timestamp older than most recent input src/plugins/projectexplorer/.rcc/generated_testdata.qrc.in (6611078583964975 vs 6611078835307007) ninja explain: C:/Projects/QtCreator/build-repo-Desktop_Qt_5_15_2_MSVC2019_64bit-Release/src/plugins/projectexplorer/ProjectExplorer_autogen/mocs_compilation.cpp is dirty Change-Id: Iaa00478bb6d81f7235d25ad541fbf86c7ca593f6 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Eike Ziller <eike.ziller@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
* QmlDesigner: Fix Qt 6.3 buildThomas Hartmann2021-12-141-1/+0
| | | | | | | | | | | The include is not required and the whole class defined inside is not used since Qt 5.6 anymore. I will remove the pre Qt 5.6 code in another patch. Change-Id: Icfc13376ceba3ee16b516156727f743e49a85127 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
* Doc: Describe CMake config for debugging running Qt Quick appsLeena Miettinen2021-12-142-2/+16
| | | | | | | | | The target_compile_definitions(myapp PRIVATE QT_QML_DEBUG) command is used. Task-number: QTCREATORBUG-26616 Change-Id: Ifde5f6f11081afa8af19e0339733d7380d1d14be Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* Boot2Qt: Fix start of flashing wizard on Windowshjk2021-12-141-1/+1
| | | | | | | | | Amends e3d87f9d0f4. Change-Id: Ib6f2548497159a1a0dae90e3d351409e942013fb Reviewed-by: Eike Ziller <eike.ziller@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: David Schulz <david.schulz@qt.io>
* QmlDesigner: Fix broken testsMarco Bubke2021-12-131-8/+15
| | | | | | | | There were key conflicts because we do not got all type ids. Change-Id: Ief90920cb02a0e6478ee89f9b54ed8e3158fb3b6 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
* CMake: Fix compilation with Qt 5.15.x and MSVCCristian Adam2021-12-131-4/+4
| | | | | | | | | | | The code was replacing the existing COMPILE_OPTIONS property and therefore fail to build when PCH was enabled. Amends 9d6b8727ee56d6044c6506fd0b9c46ea05d3c161 Change-Id: I5c530517d1acc899ac375119ce0741a05ee52cea Reviewed-by: Orgad Shaneh <orgads@gmail.com> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
* QmlDesigner: Fix PropertyEditor warningsHenning Gruendl2021-12-137-40/+59
| | | | | | | | | | * Replace dummyBackendValue when it causes type mismatch. Assigning #000000 (string) to a SpinBox value (double) isn't supported. * Fix backendValue undefined warnings * TextInputSpecifics hide text format control as not available Change-Id: I68381a54d1cc4603da1f2af08fa029b5afe94937 Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
* Doc: Describe library declaration in CMakeLists.txt filesLeena Miettinen2021-12-132-17/+29
| | | | | | | | | | The C++ Library wizard template adds target_link_libraries when CMake is selected as the build system. Task-number: QTCREATORBUG-26616 Change-Id: Ib3e42530d0b0f8f288849fed539e0d7b5ee42eb6 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
* QmlDesigner: Fix picking of Repeater3D/Loader3D generated nodesMiikka Heikkinen2021-12-133-21/+57
| | | | | | | | | | | | | | | | | There is no top level Repeater3D node with an actual instance when the Repeater3D is inside a component. The pick target was not correctly set in this case. Now we set pick target on every encountered Repeater3D object so we can propagate it to every object they create. The same was done for Loader3D, which also creates nodes dynamically. Fixes: QDS-5745 Change-Id: I537de28ff7426adaa29c2febc6c4b3416baeccb5 Reviewed-by: Samuel Ghinet <samuel.ghinet@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Mahmoud Badri <mahmoud.badri@qt.io>
* Debugger: Unset previous Path environment variableCristian Adam2021-12-131-0/+2
| | | | | | | | | | | | Newer gdb versions (11.1) on msys2 32bit environment pick up the `Path` value and not the `PATH` value that we set. By having one one value (`PATH`) we fix such issues. Fixes: QTCREATORBUG-26670 Change-Id: I3fb9da75c2a037eb43a69f6f82474c7ec4972b75 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: David Schulz <david.schulz@qt.io>
* ClangCodeModel: Fix flaky clangd completion testChristian Kandeler2021-12-131-0/+1
| | | | | | Change-Id: I38e283146d43a9ce6e9cb07dfc5b0e9ea7eb2a76 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: David Schulz <david.schulz@qt.io>
* QmlDesigner: Hide Audio-/VideoOutput for videoHenning Gruendl2021-12-132-1/+14
| | | | | | | | Hide controls for AudioOutput and VideoOutput in VideoSpecifics. Change-Id: Icfb66d44cca815dd201c7beda33930ff86a5753e Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
* QmlDesigner: Remove url properties on resetHenning Gruendl2021-12-131-13/+18
| | | | | | | | | Remove url properties like source from the model node when being reset. Change-Id: I90fd0bbf6ac7aeb375a744f2e932949e17404878 Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
* Request restart after changing file system case sensitivityEike Ziller2021-12-133-37/+61
| | | | | | | | | | | And don't apply the changed setting until restart by just writing the new value to the settings directly, which is then read at the next startup. Avoids issues where file paths are cached or used as key in a hash. Fixes: QTCREATORBUG-25005 Change-Id: I30e4d75455124af67ba9ee1d9e8ed31924016d0d Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>
* Squish: Don't try saving files after refactoringRobert Löhning2021-12-103-6/+0
| | | | | | | Files are being saved automatically. Change-Id: I4a5ce9e1ddbbd6ea3c7f51d8548a31eda8de0aab Reviewed-by: Christian Stenger <christian.stenger@qt.io>
* Doc: Fix paths to moved icons on the QDS sideLeena Miettinen2021-12-1057-88/+87
| | | | | | | | | | - Copy missing icons from utils to doc/qtdesignstudio/images/icons - Use gray-scale icons for keyframe icons Task-number: QTCREATORBUG-26644 Change-Id: I3905f17317078b489ad3b33470657eb3e1fd48f5 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
* Sqlite: Fix compile with old XcodeChristian Stenger2021-12-101-1/+1
| | | | | | | | Amends d4c6f06a63ad3804. Change-Id: Ia0dce406783e353cb1b1da8064418f64975c66ea Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* process_ctrlc_stub: Close child process when parent closesCristian Adam2021-12-101-3/+44
| | | | | | | | | | | | | When using gui applications the closing of process_ctrlc_sub launcher application didn't have any effect on the child process. By using a job object with JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE the child process gets cancelled when parent process closes. Fixes: QTCREATORBUG-26687 Change-Id: Id13b4d6f876589a018fa8f6841304417b87ee653 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
* Python: prefer python-lsp-serverDavid Schulz2021-12-101-5/+5
| | | | | | | | python-language-server is dead... long live python-lsp-server. Task-number: QTCREATORBUG-26230 Change-Id: I9343f231c732b135bc4f8a704a29541c48cc36ba Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* Improve the visual of the New Project dialogSamuel Ghinet2021-12-106-21/+59
| | | | | | | | | | | | | | * Reworked dialog header -- added DS logo, reworded title & subtitle, aligned them to the left * Added radius for rectangles: Presets pane, Styles pane, the Orientation button * Added extra padding for style items -- so it's easier to figure that the label is for the image above it. Task-number: QDS-5500 Change-Id: Icebe8abb886401e5d075e4a372c0036468301490 Reviewed-by: Mahmoud Badri <mahmoud.badri@qt.io> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
* Fix saving of file system case sensitivity settingEike Ziller2021-12-101-2/+3
| | | | | | | Amends e160c962ac89bdbb2f897c92400526530306b4ac Change-Id: I81e3c4a9010173a44a55a070f8cdfae9231b31d2 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
* CMake generator: Fix Q_IMPORT_QML_PLUGIN argumentTapani Mattila2021-12-101-1/+1
| | | | | Change-Id: I1fcf397ca188b03c580ad2f76bdab4c44eec2113 Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
* QmlDesigner: Make the states view responsiveMahmoud Badri2021-12-102-19/+8
| | | | | | | | | When resizing the states view vertically, states now will update their height to fit the available space. Fixes: QDS-5753 Change-Id: I3aa352610122b49049979c84aba12d99a0da0ea5 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io>
* LanguageClient: mark added settings as changedDavid Schulz2021-12-101-0/+1
| | | | | | | | | | | In order to correctly start a language server after it was added programmatically it needs to be marked as changed. Fixes the issue that the python language server did not get started right after setting it up from the editor info bar. Change-Id: I9caec91c9d5973912b7379478ab079c87a5231ce Reviewed-by: Christian Stenger <christian.stenger@qt.io>
* Fix LLVM tools version queryBogDan Vatra2021-12-101-2/+3
| | | | | | | | | | | | | | On Debian clang tools are prefixed with "Debian ": $ clang-tidy --version Debian LLVM version 13.0.0 Optimized build. Default target: x86_64-pc-linux-gnu Host CPU: bdver2 Change-Id: I03886d2674a3851c0cf391afc1c1672b0349184e Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Christian Stenger <christian.stenger@qt.io>
* QmlDesigner: Fix multimedia specificsHenning Gruendl2021-12-101-0/+67
| | | | | | | Fix multimedia specifics in property editor by re-adding AudioSection Change-Id: I65bd7c371ca86b643551e8943e64fb701f54017e Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
* GitHub Actions: Fix upload of release artifactsCristian Adam2021-12-101-2/+2
| | | | | | | | | | | For the tagged release commits two artifacts were missing, see: https://github.com/qt-creator/qt-creator/actions/runs/1529947256 This commit fixes this. Change-Id: Idd046426aa4793194a43d235ff47caa6a02e1957 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* Python: prefer python3 from path as default interpreterDavid Schulz2021-12-101-1/+3
| | | | | | Change-Id: Ic53fc19f59da29d55c8f59385afc74a2524d6e49 Reviewed-by: Christian Stenger <christian.stenger@qt.io> Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* ProjectExplorer: Don't squeeze device combobox too muchAlessandro Portale2021-12-091-1/+3
| | | | | | | | | | | | Respect the preferred width of DeviceKitAspectWidget's device combobox. That prevents the combobox to be squeexed together. However, reduce the preferred minimum content length to avoid too wide stretching of the combobox for the Kit Page. Fixes: QTCREATORBUG-26707 Change-Id: I87d32d3ebbc559351db782eb1a9b1f248616c688 Reviewed-by: Assam Boudjelthia <assam.boudjelthia@qt.io>
* Sqlite: Introduce BindParameterCount template parameterMarco Bubke2021-12-0922-385/+387
| | | | | | | | | | | The BindParameterCount is checked at compile time and then again for the construction of the statement. So we provide an early error instead of an some error later or even stranger behavior. Change-Id: I860ca1f78645c222ae1accf5c7a469c77befc3bd Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
* Sqlite: Cleanup exceptionsMarco Bubke2021-12-094-182/+87
| | | | | | | | | | There are now two base exceptions. Exception and ExceptionWithMessage. We very often don't use the extra message. So don't pay for what you don't use. Otherwise it is replacing code with using statements. Change-Id: I213cf1f02718f6d3b2aa0e2a64626c9fc5c7c917 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
* QmlDesigner: Synchronize without updating exportsMarco Bubke2021-12-092-13/+76
| | | | | | | | | | | | If we only update the qml file we don't have to update the exports from the qmldir file. So if ChangeLevel::ExcludeExportedTypes is set we don't touch the exports for that type. Task-number: QDS-5537 Change-Id: I247228076b3f7ac7f6334d10011b408d6406df07 Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
* TextEditor: correctly initialize automatic proposal timeoutDavid Schulz2021-12-091-1/+1
| | | | | Change-Id: I53db54b51361ce3389bb25c420880a117ede7c2d Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* Doc: Copy icons from sources to \doc\qtcreator\images\iconsLeena Miettinen2021-12-0977-119/+102
| | | | | | | | | | | | - Fix the paths to them in .qdoc files - Remove paths to source folders from .qdocconf files This is the second step towards making the icons visible in both dark and light online doc modes. Task-number: QTCREATORBUG-26644 Change-Id: I6995ea716df78cf0f285175515d1466ee20e317b Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
* macOS: Fix requesting missing permissionsEike Ziller2021-12-091-0/+14
| | | | | | | | | | | The Bluetooth key changed. Keep the old one for compatibility. Keys for requesting access to various folders on disk were added in macOS 10.15. Fixes: QTCREATORBUG-26666 Change-Id: Ieb5686fe129f795319132a36269bc34bc07a13a4 Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io> Reviewed-by: Timur Pocheptsov <timur.pocheptsov@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
* Doc: Move all icon images to images/icons and fix references to themLeena Miettinen2021-12-0945-28/+28
| | | | | | | | | As a first step to making the images visible in both dark and light online doc modes. Task-number: QTCREATORBUG-26644 Change-Id: If7da7fec69d1114201d2832b4228b4dba0f090f0 Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
* QmlDesigner: Remove flexible width from Component Library itemsMahmoud Badri2021-12-081-6/+4
| | | | | | | | | | | | | ...so that resizing the view doesn't cause sluggish animation to the items. Also removed an unnecessary top padding from the horizontal lib to avoid a slight vertical jump when switching between the 2 layouts. Change-Id: I0af75db885398dc93fc234d760156a55042f59d0 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io> Reviewed-by: Samuel Ghinet <samuel.ghinet@qt.io> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
* QmlDesigner: Enable smooth resizing of viewsMahmoud Badri2021-12-081-0/+1
| | | | | | | | | | | | Enable a docking widgets param that updates views sizes while dragging the splitters between views. Change-Id: If4fa0f8a3d4601758a2a3be0f81e306104379ecc Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io> Reviewed-by: Samuel Ghinet <samuel.ghinet@qt.io> Reviewed-by: Henning Gründl <henning.gruendl@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
* QmlDesigner: Remove duplicate family namesHenning Gruendl2021-12-081-0/+2
| | | | | | | | Remove duplicate family names in the font ComboBox. Task-number: QDS-5695 Change-Id: I9f5bcf7f58dbcae012288689c0ec48a80451c328 Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
* QmlDesigner: ConnectionEditor hide readonlyHenning Gruendl2021-12-083-18/+31
| | | | | | | | | | Hide readonly properties in the ConnectionEditors target item property ComboBox. Task-number: QDS-5718 Change-Id: Idee217714d460a0a59954faf3c51641648e0657b Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>