From 3b923e2afec1067231728ff11b68976f4fec3840 Mon Sep 17 00:00:00 2001 From: Christian Kamm Date: Tue, 8 Jan 2019 13:10:20 +0100 Subject: [PATCH] vfs: Change per-folder message on vfs support I'm unsure this note is all that useful. Remove entirely? --- src/gui/folderstatusmodel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/folderstatusmodel.cpp b/src/gui/folderstatusmodel.cpp index ddb5fd7c9..83dcdb514 100644 --- a/src/gui/folderstatusmodel.cpp +++ b/src/gui/folderstatusmodel.cpp @@ -219,8 +219,8 @@ QVariant FolderStatusModel::data(const QModelIndex &index, int role) const case FolderStatusDelegate::FolderErrorMsg: return f->syncResult().errorStrings(); case FolderStatusDelegate::FolderInfoMsg: - return f->newFilesAreVirtual() - ? QStringList(tr("New files are being created as virtual files.")) + return f->supportsVirtualFiles() + ? QStringList(tr("Virtual file support is enabled.")) : QStringList(); case FolderStatusDelegate::SyncRunning: return f->syncResult().status() == SyncResult::SyncRunning; -- 2.30.2