Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/tray/Window.qml')
-rw-r--r--src/gui/tray/Window.qml23
1 files changed, 3 insertions, 20 deletions
diff --git a/src/gui/tray/Window.qml b/src/gui/tray/Window.qml
index 1061a3c84..f7f88fb87 100644
--- a/src/gui/tray/Window.qml
+++ b/src/gui/tray/Window.qml
@@ -706,7 +706,7 @@ ApplicationWindow {
UnifiedSearchResultNothingFound {
id: unifiedSearchResultNothingFound
- visible: false
+
anchors.top: trayWindowUnifiedSearchInputContainer.bottom
anchors.left: trayWindowMainItem.left
anchors.right: trayWindowMainItem.right
@@ -715,28 +715,11 @@ ApplicationWindow {
text: UserModel.currentUser.unifiedSearchResultsListModel.searchTerm
property bool isSearchRunning: UserModel.currentUser.unifiedSearchResultsListModel.isSearchInProgress
+ property bool waitingForSearchTermEditEnd: UserModel.currentUser.unifiedSearchResultsListModel.waitingForSearchTermEditEnd
property bool isSearchResultsEmpty: unifiedSearchResultsListView.count === 0
property bool nothingFound: text && isSearchResultsEmpty && !UserModel.currentUser.unifiedSearchResultsListModel.errorString
- onIsSearchRunningChanged: {
- if (unifiedSearchResultNothingFound.isSearchRunning) {
- visible = false;
- } else {
- if (nothingFound) {
- visible = true;
- }
- }
- }
-
- onTextChanged: {
- visible = false;
- }
-
- onIsSearchResultsEmptyChanged: {
- if (!unifiedSearchResultNothingFound.isSearchResultsEmpty) {
- visible = false;
- }
- }
+ visible: !isSearchRunning && !waitingForSearchTermEditEnd && nothingFound
}
Loader {