fix(@desktop/wallet): Added missing LoadingGraphComponent in qmldir

This commit is contained in:
Khushboo Mehta 2023-01-31 13:57:50 +05:30 committed by Anthony Laibe
parent 169de5b5e1
commit dfcba80df2
3 changed files with 2 additions and 4 deletions

View File

@ -8,8 +8,6 @@ import StatusQ.Core.Utils 0.1
import StatusQ.Components 0.1
import StatusQ.Controls 0.1
import utils 1.0 as LocalUtils
Item {
id: root
@ -116,7 +114,7 @@ Item {
delegate: Loader {
id: chatLoader
active: model.type !== LocalUtils.Constants.chatType.category && model.categoryOpened
active: model.type !== d.chatTypeCategory && model.categoryOpened
// TODO fix height not adjusting
// This below doesn't work well, the height stays at 0 after reopening
// height: active && item ? item.height : 0
@ -303,6 +301,7 @@ Item {
id: d
property int destinationPosition: -1
readonly property int chatTypeCategory: -1
}
Loader {

View File

@ -17,7 +17,6 @@
<file>StatusQ/Components/StatusChatInfoToolBar.qml</file>
<file>StatusQ/Components/StatusChatList.qml</file>
<file>StatusQ/Components/StatusChatListAndCategories.qml</file>
<file>StatusQ/Components/StatusChatListCategory.qml</file>
<file>StatusQ/Components/StatusChatListCategoryItem.qml</file>
<file>StatusQ/Components/StatusChatListItem.qml</file>
<file>StatusQ/Components/StatusToolBar.qml</file>