|
|
@ -305,14 +305,7 @@ ChoicePage::setupChoices()
|
|
|
|
m_rightLayout->setStretchFactor( m_previewAfterFrame, 0 );
|
|
|
|
m_rightLayout->setStretchFactor( m_previewAfterFrame, 0 );
|
|
|
|
|
|
|
|
|
|
|
|
connect( this, &ChoicePage::actionChosen,
|
|
|
|
connect( this, &ChoicePage::actionChosen,
|
|
|
|
this, [=]
|
|
|
|
this, &ChoicePage::onActionChanged );
|
|
|
|
{
|
|
|
|
|
|
|
|
Device* currd = selectedDevice();
|
|
|
|
|
|
|
|
if ( currd )
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
applyActionChoice( currentChoice() );
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CALAMARES_RETRANSLATE(
|
|
|
|
CALAMARES_RETRANSLATE(
|
|
|
|
updateSwapChoicesTr( m_eraseSwapChoices );
|
|
|
|
updateSwapChoicesTr( m_eraseSwapChoices );
|
|
|
@ -412,6 +405,17 @@ ChoicePage::continueApplyDeviceChoice()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
|
|
|
ChoicePage::onActionChanged()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
Device* currd = selectedDevice();
|
|
|
|
|
|
|
|
if ( currd )
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
applyActionChoice( currentChoice() );
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
void
|
|
|
|
ChoicePage::applyActionChoice( ChoicePage::InstallChoice choice )
|
|
|
|
ChoicePage::applyActionChoice( ChoicePage::InstallChoice choice )
|
|
|
|
{
|
|
|
|
{
|
|
|
|