Use untranslated filesystem name for fstab entries.

BUG: 434807
This commit is contained in:
Andrius Štikonas 2021-03-23 19:33:28 +00:00
parent 2e80aa5bdd
commit bdb0d25ace
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ EditMountPointDialogWidget::EditMountPointDialogWidget(QWidget* parent, Partitio
fsName = QStringLiteral("vfat"); fsName = QStringLiteral("vfat");
break; break;
default: default:
fsName = partition().fileSystem().name(); fsName = partition().fileSystem().name({QStringLiteral("C")});
} }
m_fstabEntries.push_back(FstabEntry(m_deviceNode, QString(), fsName, QString())); m_fstabEntries.push_back(FstabEntry(m_deviceNode, QString(), fsName, QString()));