diff --git a/ui/StatusQ/src/StatusQ/Components/StatusChatList.qml b/ui/StatusQ/src/StatusQ/Components/StatusChatList.qml index 4f6e65dcca..a1b31e491b 100644 --- a/ui/StatusQ/src/StatusQ/Components/StatusChatList.qml +++ b/ui/StatusQ/src/StatusQ/Components/StatusChatList.qml @@ -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 { diff --git a/ui/StatusQ/src/statusq.qrc b/ui/StatusQ/src/statusq.qrc index f602f4ba81..8ec0057474 100644 --- a/ui/StatusQ/src/statusq.qrc +++ b/ui/StatusQ/src/statusq.qrc @@ -17,7 +17,6 @@ StatusQ/Components/StatusChatInfoToolBar.qml StatusQ/Components/StatusChatList.qml StatusQ/Components/StatusChatListAndCategories.qml - StatusQ/Components/StatusChatListCategory.qml StatusQ/Components/StatusChatListCategoryItem.qml StatusQ/Components/StatusChatListItem.qml StatusQ/Components/StatusToolBar.qml diff --git a/ui/imports/shared/views/LoadingGraphView.qml b/ui/app/AppLayouts/Wallet/views/LoadingGraphView.qml similarity index 100% rename from ui/imports/shared/views/LoadingGraphView.qml rename to ui/app/AppLayouts/Wallet/views/LoadingGraphView.qml