Do not show luks in FileSystemSupportDialog.

This commit is contained in:
Andrius Štikonas 2016-04-26 13:03:10 +01:00
parent 8f05b9e422
commit e5eed419f3
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ void FileSystemSupportDialog::setupDialog()
dialogWidget().tree().clear();
foreach(const FileSystem * fs, FileSystemFactory::map()) {
if (fs->type() == FileSystem::Unknown || fs->type() == FileSystem::Extended)
if (fs->type() == FileSystem::Unknown || fs->type() == FileSystem::Extended || fs->type() == FileSystem::Luks)
continue;
QTreeWidgetItem* item = new QTreeWidgetItem();