aboutsummaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* 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>
* 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: 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>
* QDS: shrink the right margin of the project view for small sized dialogSamuel Ghinet2021-12-082-11/+24
| | | | | | | | | | | | | This also allows a bit smaller minimum width for the dialog. Also, did a bit of cleanup. Task-number: QDS-5500 Change-Id: I3660190ac0a73dd1da1c7d6f8ee76660b1fba6be Reviewed-by: Mahmoud Badri <mahmoud.badri@qt.io> Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
* Update screenshot in appdataYouri Westerman2021-12-071-1/+1
| | | | | | | The old screenshot no longer exists and results in a 404. Change-Id: Iabae251b6441b0cf25ee94856c03113b16d6faf6 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* QmlDesigner: Fix Qt5 compilationMiikka Heikkinen2021-12-071-1/+7
| | | | | | | | | QQuick3DViewport::pickAll was introduced in Qt 6.2. Checking against version 6.2.1 because that's when the global picking API was taken into use in QmlDesigner. Change-Id: Id69ff9d958da89ba9e043dfb082a99f640884a4e Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
* QmlDesigner: Fix for states delegate behaviorAleksei German2021-12-071-0/+8
| | | | | | Task-number: QDS-5649 Change-Id: Id5d936c29fc832f3df8fa163c607562bc0983ed3 Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
* QmlDesigner: Update _pickTarget of Repeater3D created objectsMiikka Heikkinen2021-12-073-0/+42
| | | | | | | | | | | | | | The objects Repeater3D creates are created after handleInstanceHidden is called for the repeater instance, so the _pickTarget of the created children doesn't get properly updated. Added signal handler to make sure handleInstanceHidden is called again after all objects have been created. Fixes: QDS-5643 Change-Id: I8b63614fca0be3956b6896028e3f3a0f49bfe397 Reviewed-by: Mahmoud Badri <mahmoud.badri@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
* QmlDesigner: Fix picking issuesMiikka Heikkinen2021-12-073-9/+27
| | | | | | | | | | | | | | | | | We now check also the parent chain for pickability, because a node is not pickable if one of the ancestors is not pickable, as all properties picking depends on (visibility, locked state) are implicitly inherited by descendants. Rotate gizmo rings default to regular View3D picking when the angle is so steep that the plane intersection is not reliable. With new global picking enabled handling we need to check all hits instead of just the first one. Change-Id: Ib1aa604b06f7db1041f5d4c3019cc2badf29a20f Fixes: QDS-5679 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
* QmlDesigner: Animate item library controls' hoveringMahmoud Badri2021-12-033-1/+26
| | | | | | | | | | Added animation behavior for hovering. Also added top padding to the search field so that the text is correctly aligned vertically. Change-Id: I51273373aa43ceb3a3faca6a9f76b613fdd0be69 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
* QmlDesigner: Fix states context menu not working in certain areasMahmoud Badri2021-12-031-64/+27
| | | | | | | | | | | | | | | | | | | | Fixed 2 issues with the context menu: - Left clicking the area to the right of the states doesn't close the context menu. The issues seems to be a bug in the ListView, solved by limiting the width of the ListView to the states area width. - Clicking (left or right) below the states area doesn't work. This is because the height of the states view was fixed to the height needed. Solved by not restricting the view height and do necessary changes. Also some cleanups and removing unnecessary stuff. Fixes: QDS-5324 Change-Id: Ic1e3f5d0776bb4770a3276c93ad1aee7a0049388 Reviewed-by: Samuel Ghinet <samuel.ghinet@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
* Adjust to model bounds calculation API changeKaj Grönholm2021-12-032-0/+8
| | | | | | | | | | | | Model bounds API changed with 25b757b7b0a286a392b3 so switch to new API with version checks. Task-number: QDS-5657 Change-Id: I6d880f179fc277f94ea9ac610ae682e9afbefe39 Reviewed-by: Antti Määttä <antti.maatta@qt.io> Reviewed-by: Andy Nichols <andy.nichols@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io>
* QmlDesigner: Remove audio wrapperHenning Gruendl2021-12-021-67/+0
| | | | | | | | | | Remove the custom audio convenience type which should mimic the QML Video convenience type only for audio. The custom convenience wrapper is not working, because MediaPlayer is a QObject and can't have children. Change-Id: Ic8d06e6397d8b7bb3bc531d47c1cb0b92142a742 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
* QmlDesigner: Add VideoOutputHenning Gruendl2021-12-022-0/+73
| | | | | | | | | | * Add VideoOutput * Add ComboBoxes to MediaPlayer specifics for selecting audio and video output ids Change-Id: I52ea764b1301492754676a97d8d122275ba6dd81 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
* QmlDesigner: Fix puppet crash with nested Repeater3DsMiikka Heikkinen2021-12-021-0/+9
| | | | | | | | | | | | | | Repeater3D instance instantiated by another Repeater3D got its componentCompleted called twice because a repeater constructing a child repeater already completes the component as part of the process, and then we recursively complete the children again when completing the parent. Added a check to avoid duplicate completions. Fixes: QDS-5651 Change-Id: Iefc7deff4877df903f784396f2efd13468f604b7 Reviewed-by: Samuel Ghinet <samuel.ghinet@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
* Improve particle system animation driverAntti Määttä2021-12-023-16/+38
| | | | | | | | | | | | - Do not automatically restart particle system animation when pressing the restart button if the animation is paused. - Use own QElapsedTimer in AnimationDriver and properly handle animation driver pausing. Change-Id: Ic2924fb66fddffb8878625be8fa766f06219ca61 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
* Fix visual issues in new project wizardSamuel Ghinet2021-12-015-409/+485
| | | | | | | | | | | | | | | | | | | | | | | | * Make Project name text field have the same font size as the rest * Use Titillium Web as the font family for the title * Reduce the top padding of the dialog box * Renounce the section "Advanced" from Details - we still have the items in the section, just not the section itself. * Add scrollbar for the details pane - to allow smaller size dialog * Move the tab bar (Presets) out of the GridView component - so that scrolling the view would not also scroll the header. * The Project view now shrinks if the dialog box is shrinked too much, also reduced the minimum sizes of the dialog * Resize dialog on screens smaller than 1920 x 1080 * Increase the space between Presets, Details, Styles text and their top margin * Lower the project item width from 144 to 90, so that project items in the view are not so distanced from each other. * Align the Cancel button with the left margin of the Style pane Task-number: QDS-5500 Change-Id: I340967941c5c56c89b8741079cb64e355a283e3b Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
* QmlDesigner: Hide ComboBox ScrollBar if not neededHenning Gruendl2021-12-011-1/+3
| | | | | | Change-Id: I1e8d9917b7b966b6c4e68459185c54dda7d21015 Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
* QmlDesigner: Remove faulty blue color behind docking widgets tabsMahmoud Badri2021-11-306-6/+6
| | | | | | | Fixes: QDS-5653 Change-Id: I71bc6267b1e40016fbcacc7ae4d6b21b76c8d701 Reviewed-by: Brook Cronin <brook.cronin@qt.io> Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io>
* QmlDesigner: Destroy old view before each navigator preview generationMiikka Heikkinen2021-11-261-0/+1
| | | | | | | | | | | | If you triggered another preview generation while previous is still going through the async loop, it was possible for puppet to crash or create a preview image with e.g. both material and model previews overlapping. Fixes: QDS-5600 Change-Id: Ia11e01cff0503483dc4152aa412c3f9aea7fea6d Reviewed-by: Mahmoud Badri <mahmoud.badri@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
* QmlDesigner: Support transparent border for effectsThomas Hartmann2021-11-264-1/+21
| | | | | | | | | | | | | | | If an effect uses transparent border int paints outside of the item. Without this patch the item is only rendered inside the bounds of the item. This patch always adds 40px to the bounding rectangle if an effect is detected. This is done by effectAdjustedBoundingRect(). The 40px should be sufficient for every realistic case. Task-number: QDS-3576 Change-Id: I82af0ea66c79039dcae92a88a5954b49de6d944f Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
* QmlDesigner: Fix navigator preview of imported 3D componentsMiikka Heikkinen2021-11-262-49/+95
| | | | | | | | | | | | | | | | | Rendering of preview tooltip 3D content requires rendering multiple frames to find the correct zoom level for a nice preview image. This used to be done in a synchronous loop, which doesn't work in Qt6. It doesn't work anymore because preview tooltip rendering uses a selection box encompassing the component scene for finding the proper zoom level. Selection boxes use custom geometry, which in Qt6 requires asynchronous rendering to allow the geometry to update between frames. Fixes: QDS-5600 Change-Id: Ib5e54a04ad5df2a8706fd22e554232feb45dd51e Reviewed-by: Mahmoud Badri <mahmoud.badri@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
* QmlDesigner: Remove dummy View3D workaroundMiikka Heikkinen2021-11-261-5/+0
| | | | | | | | The underlying issue requiring the workaround has been fixed in Qt6. Change-Id: I36ca14112ae86a558be0cfc43c192e26dfde7efd Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
* QmlDesigner: Animate the tab strip in the new project wizard dialogMahmoud Badri2021-11-251-55/+46
| | | | | | Change-Id: I7af0c9b45c77d6742003319f7504d99d2df06d1f Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
* Fix: QDS New Project dialog text color is not DStextColorSamuel Ghinet2021-11-241-1/+1
| | | | | | | Task-number: QDS-5501 Change-Id: I323cf62a5149eeb062cdb87f2d59511a6bfd4662 Reviewed-by: Brook Cronin <brook.cronin@qt.io> Reviewed-by: Mahmoud Badri <mahmoud.badri@qt.io>
* Handle particle system animation when selecting child objectAntti Määttä2021-11-242-9/+59
| | | | | | | | | | | | Do not stop particle system animation when user selects particle system child object. Instead continue particle system animation and if the child parent particle system is another particle system, enable that animation. Task-number: QDS-5562 Change-Id: I334f522536b53e7fb5cbebf8f7e9914f6394d165 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
* QmlDesigner: Fix capitalization of rotBlocked@Internal aux propertyMiikka Heikkinen2021-11-231-1/+1
| | | | | | | | | | | | The "@Internal" part of aux property must have the "I" capitalized for it to avoid affecting document modified state. Fixes: QDS-4802 Change-Id: Ibbf0006ba6c24bad3ad017a72196dac1d366fe94 Reviewed-by: Mahmoud Badri <mahmoud.badri@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
* Fix some compiler warningsChristian Kandeler2021-11-221-6/+0
| | | | | Change-Id: I9128afcf56bd47cb6627012bb6b0d13395b432ac Reviewed-by: Christian Stenger <christian.stenger@qt.io>
* QDS New Project dialog: capitalize the first letter of the Project NameSamuel Ghinet2021-11-221-0/+4
| | | | | | | | | | | Capitalize the first letter of the project name When the user finished editing. Change-Id: I7222bbd9a13d275fa13028cdc24cfd781c7a791f Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Mahmoud Badri <mahmoud.badri@qt.io> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
* QmlDesigner: Fix orthographic camera hdpi issues in edit 3D viewMiikka Heikkinen2021-11-225-23/+27
| | | | | | | | | | | | | | | There is no need to double the viewport anymore when calculating orthographic camera frustum visualization, Qt6 correctly accounts for device pixel ratio in ortho projection. Even in Qt5, the old hack only made frustum visualization correct for hdpi screens while breaking it for regular screens. Also fixed zoom factor handling for orthographic edit camera mode. Task-number: QDS-5469 Change-Id: Ie53b5dfa2fbcc00f098ea64e5a6673e4b7af0963 Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
* QmlDesigner: Fix 3D edit view rendering logicMiikka Heikkinen2021-11-191-14/+26
| | | | | | | | | | | | | | | | If we have more than one render in queue for 3D edit view, we know the current render is not good, so do not send it to creator side but instead wait until we have just one render in the queue. Also changed the timeout for queued renders to closely correspond to 60fps frame time as there is no point rendering any faster than that. This also means we never need to queue more than two frames to ensure correct results. Fixes: QDS-5467 Change-Id: I49a3a7aeaff24484f48784d0391414165ce50748 Reviewed-by: Mahmoud Badri <mahmoud.badri@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
* Fix: QDS New Project dialog shows incorrect items in the screen size comboboxSamuel Ghinet2021-11-181-8/+12
| | | | | | | | | | The index in the backend wizard's combobox was not loaded when initializing the QML combobox. Task-number: QDS-5523 Change-Id: I48583ff1ca85f840e9b7314a4e0ed734364c326a Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io> Reviewed-by: Mahmoud Badri <mahmoud.badri@qt.io>
* QDS NewProject dialog: use friendly error message when regex does not matchSamuel Ghinet2021-11-181-0/+1
| | | | | | | | | | | | | | Instead of telling the user that the project name does not match a complex regular expression, we can tell him in English words what the rules are. Also, updates the icon of the status message so that, when the status is multiline, the icon appears at the top, rather than vertical center, on the left side of the text. Change-Id: I848b3858f5f92a09588b9646c56cbf743b06ea09 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* Fix particles play button state when scene changesAntti Määttä2021-11-171-3/+1
| | | | | | | | | Add play button state to the scene state. Task-number: QDS-5499 Change-Id: Id3035de439aa80fd782348cf89a1d8456a7dd006 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
* Update background colors in all themes other than design darkSamuel Ghinet2021-11-157-12/+13
| | | | | | | | | | | | | | | | | | | | While we have chosen lower contrast lighter values for the design dark theme (via normalBackground and alternateBackground from Palette), the New Project dialog box did not look well on other themes. I have replaced the background colors for those other themes, so that DSBackgroundColorNormal is now set to the value of DSsectionHeadBackground, while DSBackgroundColorAlternate is set to the value of DSpanelBackground, which makes the dialog look more like the property editor. Also, fixed the item delegate in NewProjectView, which had a non-transparent background. This background was visible on light versions of the theme. Change-Id: Iad7dea1ea1a03839293148178dbc441c05b3fb7f Reviewed-by: Brook Cronin <brook.cronin@qt.io> Reviewed-by: Mahmoud Badri <mahmoud.badri@qt.io> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
* Update style imagesSamuel Ghinet2021-11-1522-0/+0
| | | | | | Change-Id: I456aa22ea3ab7f067daed93077a9a6994f7aabb3 Reviewed-by: Mahmoud Badri <mahmoud.badri@qt.io> Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
* QmlDesigner: Update translation iconsHenning Gruendl2021-11-152-16/+15
| | | | | | | | * Fix characters U+009c and U+00ad not working by skipping those Change-Id: I7c156184c1bd2ca6116d1bbdf8f0a61382340ce2 Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io> Reviewed-by: Samuel Ghinet <samuel.ghinet@qt.io>
* Replace TextField with RealSpinBox for custom width and heightSamuel Ghinet2021-11-121-27/+28
| | | | | | Change-Id: I07f993033a4a0fa5168abd0636fc883bd3ccd7fe Reviewed-by: Mahmoud Badri <mahmoud.badri@qt.io> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
* Fix wizard details & styles panes not loading on LinuxSamuel Ghinet2021-11-121-1/+1
| | | | | Change-Id: I84ced8de858fb3aa9b72e3a9b8524154c0274c7a Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
* QmlDesigner: Compilation fix for Qt5 buildsMiikka Heikkinen2021-11-121-1/+4
| | | | | Change-Id: I37ddd5024588c14ea415ad43ffe5b7a89c3f6857 Reviewed-by: Mahmoud Badri <mahmoud.badri@qt.io>
* QmlDesigner: Refresh items if state is changedThomas Hartmann2021-11-111-2/+19
| | | | | | | | | We have to paint each item after a state change. This seems to be a regression caused by the swtich to Qt 6. Task-number: QDS-5462 Change-Id: I10a1e0e03c7e887c0998864f397fcbe429364ec7 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io>
* Allow selecting particle system as rootAntti Määttä2021-11-111-1/+2
| | | | | | | | | | Not allowing this causes selection problems. Fixes: QDS-5371 Change-Id: I99d2591a3beb07e39413ba046f3f25e81f0cef50 Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io> Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
* QmlDesigner: Use disabled color for disabled add module buttonMiikka Heikkinen2021-11-111-2/+5
| | | | | | Fixes: QDS-5366 Change-Id: Ibfd761ad9c425c0a05a8668927121084dcfc5b64 Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
* Debugger: Fix setting of Qt version fallback, againhjk2021-11-101-2/+2
| | | | | Change-Id: I6b6cd448884800cb6d08dbdce15cb99f4ea8ba2b Reviewed-by: Christian Stenger <christian.stenger@qt.io>
* Dumper: Fix passing fallback Qt versionChristian Stenger2021-11-101-1/+2
| | | | | | | We nowadays have an additional token there. Change-Id: I65e5a55792802ae2ab7da6f7c6d8d1b109bf55a0 Reviewed-by: hjk <hjk@qt.io>
* Implement the New Project creation wizard for QDSSamuel Ghinet2021-11-0920-0/+1165
| | | | | | | Task-number: QDS-4490 Change-Id: Ie8073e8838ec14a7f11ad972acc6fca4456adf58 Reviewed-by: Alessandro Portale <alessandro.portale@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
* Avoid QmlPuppet crash when translation database is lockedTuomo Pelkonen2021-11-091-6/+10
| | | | | | Task-number: QDS-5365 Change-Id: I0be2aaa4d64334273ce03f5bb692b8ed8597c266 Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
* QmlDesigner: Add translation font iconsHenning Gruendl2021-11-092-79/+87
| | | | | | Change-Id: Ie6ca22bd51997e8a0d9aadd73dd44935e824bb73 Reviewed-by: Brook Cronin <brook.cronin@qt.io> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
* Debugger: Add even more std and Qt char and int typesAndre Hartmann2021-11-091-2/+32
| | | | | | | | Make more stdint, quint and char types known to the debugger. Task-number: QTCREATORBUG-26501 Change-Id: I1e757af2a495142fa37fe2b7cefec56690adbf08 Reviewed-by: hjk <hjk@qt.io>
* QmlDesigner: Correct Assets view empty statusMahmoud Badri2021-11-081-1/+1
| | | | | | | | | | Make isEmpty a property instead of an invokable method so that Qml side is properly notified when its value changes. Change-Id: I2552b23cc533bbd740902a31bae89b1dfbd3b0cf Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>