From a4831085fb1343e7ebf452f2639e653d42936393 Mon Sep 17 00:00:00 2001 From: Teo Mrnjavac Date: Fri, 19 Feb 2016 16:42:51 +0100 Subject: [PATCH] Only override BIOS bootloader install path if there's no UI. --- src/modules/partition/gui/ChoicePage.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/modules/partition/gui/ChoicePage.cpp b/src/modules/partition/gui/ChoicePage.cpp index b863d2431..a6aeb6998 100644 --- a/src/modules/partition/gui/ChoicePage.cpp +++ b/src/modules/partition/gui/ChoicePage.cpp @@ -500,7 +500,8 @@ ChoicePage::onLeave() } 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() ); } }