mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-23 15:38:22 -04:00
Fix bug with KPM enum which prevented logical partition creation.
This commit is contained in:
parent
fa2b577236
commit
8885a7e5f6
1 changed files with 2 additions and 1 deletions
|
@ -62,7 +62,8 @@ CreatePartitionDialog::CreatePartitionDialog( Device* device, PartitionNode* par
|
|||
mountPoints.sort();
|
||||
m_ui->mountPointComboBox->addItems( mountPoints );
|
||||
|
||||
if ( device->partitionTable()->type() == PartitionTable::msdos )
|
||||
if ( device->partitionTable()->type() == PartitionTable::msdos ||
|
||||
device->partitionTable()->type() == PartitionTable::msdos_sectorbased )
|
||||
initMbrPartitionTypeUi();
|
||||
else
|
||||
initGptPartitionTypeUi();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue