Fix bug with KPM enum which prevented logical partition creation.
This commit is contained in:
parent
fa2b577236
commit
8885a7e5f6
@ -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…
Reference in New Issue
Block a user