diff --git a/ownCloudAppShared/Client/Account/Controller/AccountControllerSearchViewController.swift b/ownCloudAppShared/Client/Account/Controller/AccountControllerSearchViewController.swift index 95fe9c15a..6e3a0ca34 100644 --- a/ownCloudAppShared/Client/Account/Controller/AccountControllerSearchViewController.swift +++ b/ownCloudAppShared/Client/Account/Controller/AccountControllerSearchViewController.swift @@ -81,4 +81,12 @@ class AccountControllerSearchViewController: ClientItemViewController { return suggestions } + + override func search(for viewController: SearchViewController, content: SearchViewController.Content?) { + // Disable dragging of items, so keyboard control does not include "Drag Item" + // in the accessibility actions invoked with Tab + Z for (Quick Access) suggestions + dragInteractionEnabled = (content?.type == .suggestion) ? false : true + + super.search(for: viewController, content: content) + } }