Update createPartition call.

main
Teo Mrnjavac 9 years ago
parent e9d2312002
commit 182ff03e04

@ -169,9 +169,7 @@ PartitionPage::onCreateClicked()
if ( dlg->exec() == QDialog::Accepted ) if ( dlg->exec() == QDialog::Accepted )
{ {
Partition* newPart = dlg->createPartition(); Partition* newPart = dlg->createPartition();
m_core->createPartition( model->device(), newPart ); m_core->createPartition( model->device(), newPart, dlg->newFlags() );
if ( dlg->newFlags() != PartitionTable::FlagNone )
m_core->setPartitionFlags( model->device(), newPart, dlg->newFlags() );
} }
delete dlg; delete dlg;
} }
@ -255,7 +253,7 @@ PartitionPage::updatePartitionToCreate( Device* device, Partition* partition )
{ {
Partition* newPartition = dlg->createPartition(); Partition* newPartition = dlg->createPartition();
m_core->deletePartition( device, partition ); m_core->deletePartition( device, partition );
m_core->createPartition( device, newPartition ); m_core->createPartition( device, newPartition, dlg->newFlags() );
} }
delete dlg; delete dlg;
} }

Loading…
Cancel
Save