Only override BIOS bootloader install path if there's no UI.

This commit is contained in:
Teo Mrnjavac 2016-02-19 16:42:51 +01:00
parent 7a89b53538
commit a4831085fb

View file

@ -500,7 +500,8 @@ ChoicePage::onLeave()
} }
else // installPath is then passed to the bootloader module for MBR setup else // installPath is then passed to the bootloader module for MBR setup
{ {
m_core->setBootLoaderInstallPath( selectedDevice()->deviceNode() ); if ( m_bootloaderComboBox.isNull() )
m_core->setBootLoaderInstallPath( selectedDevice()->deviceNode() );
} }
} }