We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bcbdc6 commit e4ef126Copy full SHA for e4ef126
src/gui/folderwizard/folderwizard.cpp
@@ -121,7 +121,11 @@ const AccountStatePtr &FolderWizardPrivate::accountState()
121
122
bool FolderWizardPrivate::useVirtualFiles() const
123
{
124
+#ifdef Q_OS_WIN
125
return VfsPluginManager::instance().bestAvailableVfsMode() == Vfs::WindowsCfApi;
126
+#elif defined(Q_OS_UNIX) && !defined(Q_OS_MAC)
127
+ return VfsPluginManager::instance().bestAvailableVfsMode() == Vfs::XAttr;
128
+#endif
129
}
130
131
FolderWizard::FolderWizard(const AccountStatePtr &account, QWidget *parent)
0 commit comments