Skip to content

Commit

Permalink
fix(@desktop/wallet): Added missing LoadingGraphComponent in qmldir
Browse files Browse the repository at this point in the history
  • Loading branch information
Khushboo-dev-cpp authored and alaibe committed Jan 31, 2023
1 parent 169de5b commit dfcba80
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
5 changes: 2 additions & 3 deletions ui/StatusQ/src/StatusQ/Components/StatusChatList.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -303,6 +301,7 @@ Item {
id: d

property int destinationPosition: -1
readonly property int chatTypeCategory: -1
}

Loader {
Expand Down
1 change: 0 additions & 1 deletion ui/StatusQ/src/statusq.qrc
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit dfcba80

Please sign in to comment.