About: Add remark about vfs plugin that's in use #7137

This commit is contained in:
Christian Kamm 2019-04-10 13:40:43 +02:00 committed by Kevin Ottens
parent 2bffde2600
commit da40e84aec
No known key found for this signature in database
GPG Key ID: 074BBBCB8DECC9E2

View File

@ -17,6 +17,7 @@
#include "common/utility.h"
#include "version.h"
#include "configfile.h"
#include "common/vfs.h"
#include <QtCore>
#ifndef TOKEN_AUTH_ONLY
@ -419,6 +420,9 @@ QString Theme::about() const
.arg(QString::fromLatin1(MIRALL_STRINGIFY(MIRALL_VERSION)) + QString(" (%1)").arg(osName))
.arg(helpUrl());
devString += QString("<p><small>Using virtual files plugin: %1</small></p>")
.arg(Vfs::modeToString(bestAvailableVfsMode()));
return devString;
}