From 4819eec59b96bc73e5444f8bf29365884d647327 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrius=20=C5=A0tikonas?= Date: Sun, 4 Oct 2020 21:18:08 +0100 Subject: [PATCH] Allow moving partitions with unknown file system. BUG: 404398 --- src/fs/unknown.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fs/unknown.cpp b/src/fs/unknown.cpp index 6df09f7..156862c 100644 --- a/src/fs/unknown.cpp +++ b/src/fs/unknown.cpp @@ -12,7 +12,7 @@ namespace FS { -FileSystem::CommandSupportType unknown::m_Move = FileSystem::cmdSupportNone; +FileSystem::CommandSupportType unknown::m_Move = FileSystem::cmdSupportCore; unknown::unknown(qint64 firstsector, qint64 lastsector, qint64 sectorsused, const QString& label, const QVariantMap& features) : FileSystem(firstsector, lastsector, sectorsused, label, features, FileSystem::Type::Unknown)