mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
gui/wizard: When asking about virtual files, do not notify user if using macOS File Provider module
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
This commit is contained in:
parent
5f5332fd6e
commit
6025de2ae4
@ -445,6 +445,11 @@ void OwncloudWizard::bringToTop()
|
||||
|
||||
void OwncloudWizard::askExperimentalVirtualFilesFeature(QWidget *receiver, const std::function<void(bool enable)> &callback)
|
||||
{
|
||||
#ifdef BUILD_FILE_PROVIDER_MODULE
|
||||
callback(true);
|
||||
return;
|
||||
#endif
|
||||
|
||||
const auto bestVfsMode = bestAvailableVfsMode();
|
||||
QMessageBox *msgBox = nullptr;
|
||||
QPushButton *acceptButton = nullptr;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user