mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-24 19:05:46 -05:00
Fixed m_isEfi falsely false in ReplacePage.
This commit is contained in:
parent
d54f314394
commit
a2c5bcd0ee
1 changed files with 3 additions and 3 deletions
|
@ -49,9 +49,6 @@ ReplacePage::ReplacePage( PartitionCoreModule* core, QWidget* parent )
|
|||
m_ui->deviceComboBox->setModel( m_core->deviceModel() );
|
||||
m_ui->partitionPreview->setLabelsVisible( true );
|
||||
|
||||
if ( Calamares::JobQueue::instance()->globalStorage()->value( "firmwareType" ) == "efi" )
|
||||
m_isEfi = true;
|
||||
|
||||
loadEfiSystemPartitions();
|
||||
|
||||
// updateButtons();
|
||||
|
@ -145,6 +142,9 @@ ReplacePage::applyChanges()
|
|||
void
|
||||
ReplacePage::onPartitionSelected()
|
||||
{
|
||||
if ( Calamares::JobQueue::instance()->globalStorage()->value( "firmwareType" ) == "efi" )
|
||||
m_isEfi = true;
|
||||
|
||||
cDebug() << "Partition selected in Replace page.";
|
||||
if ( m_ui->partitionTreeView->currentIndex() == QModelIndex() )
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue