mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-30 10:55:37 -04:00
[partition] Canonicalize the FS choice for erase
This commit is contained in:
parent
d8a862ec82
commit
cd804470b5
1 changed files with 6 additions and 4 deletions
|
@ -9,6 +9,8 @@
|
|||
|
||||
#include "Config.h"
|
||||
|
||||
#include "PartUtils.h"
|
||||
|
||||
#include "GlobalStorage.h"
|
||||
#include "JobQueue.h"
|
||||
#include "utils/Logger.h"
|
||||
|
@ -210,11 +212,11 @@ Config::setSwapChoice( Config::SwapChoice c )
|
|||
void
|
||||
Config::setEraseFsTypeChoice( const QString& choice )
|
||||
{
|
||||
if ( choice != m_eraseFsTypeChoice )
|
||||
QString canonicalChoice = PartUtils::canonicalFilesystemName( choice, nullptr );
|
||||
if ( canonicalChoice != m_eraseFsTypeChoice )
|
||||
{
|
||||
// FIXME: shouldn't this be a canonical fs name?
|
||||
m_eraseFsTypeChoice = choice;
|
||||
Q_EMIT eraseModeFilesystemChanged( choice );
|
||||
m_eraseFsTypeChoice = canonicalChoice;
|
||||
Q_EMIT eraseModeFilesystemChanged( canonicalChoice );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue