From b0a48e3844d112672ce382e4d632308cef579b8b Mon Sep 17 00:00:00 2001 From: Puck Meerburg Date: Tue, 9 Dec 2014 21:51:58 +0100 Subject: [PATCH] DriveSetup: Also mount BDiskDevices which contain a file system. Signed-off-by: Adrien Destugues GCI2014, Fixes #6783. * The "Mount All" Tracker menu only mounted partitions, not disks filled directly with a filesystem. --- src/apps/drivesetup/MainWindow.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/apps/drivesetup/MainWindow.cpp b/src/apps/drivesetup/MainWindow.cpp index 046ccf2d61..2820c7a202 100644 --- a/src/apps/drivesetup/MainWindow.cpp +++ b/src/apps/drivesetup/MainWindow.cpp @@ -150,6 +150,9 @@ public: virtual bool Visit(BDiskDevice* device) { + if (device->ContainsFileSystem()) + device->Mount(); + return false; // Don't stop yet! }