Ensure sharee suggestions popup does not appear on top of sharee field context menu

Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
This commit is contained in:
Claudio Cambra 2024-10-18 12:03:03 +08:00 коммит произвёл Matthieu Gallien
Родитель 91f3833ae6
Коммит 3f34805183
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -42,7 +42,7 @@ TextField {
readonly property double iconsScaleFactor: 0.6
function triggerSuggestionsVisibility() {
shareeListView.count > 0 ? suggestionsPopup.open() : suggestionsPopup.close();
!contextMenu.opened && shareeListView.count > 0 ? suggestionsPopup.open() : suggestionsPopup.close();
}
placeholderText: enabled ? qsTr("Search for users or groups…") : qsTr("Sharing is not available for this folder")