diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-08-30 07:49:03 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-08-30 07:49:03 -0500 |
commit | cd61915f0b7ff3e53286178ac6f1dd3395a6b830 (patch) | |
tree | 8564c935a6f8c8cd0ca46745955e13029aa25f1d /ui | |
parent | eab23f62a434e26de082b67f4af339b14300eb27 (diff) | |
download | horizon-cd61915f0b7ff3e53286178ac6f1dd3395a6b830.tar.gz horizon-cd61915f0b7ff3e53286178ac6f1dd3395a6b830.tar.bz2 horizon-cd61915f0b7ff3e53286178ac6f1dd3395a6b830.tar.xz horizon-cd61915f0b7ff3e53286178ac6f1dd3395a6b830.zip |
Rearchitect how 'bootloader' key works
Diffstat (limited to 'ui')
-rw-r--r-- | ui/qt5/horizonwizard.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/qt5/horizonwizard.cc b/ui/qt5/horizonwizard.cc index 92b81db..d97ab3b 100644 --- a/ui/qt5/horizonwizard.cc +++ b/ui/qt5/horizonwizard.cc @@ -654,7 +654,7 @@ QString HorizonWizard::toHScript() { lines << "pkginstall openrc"; if(this->grub) { - lines << "bootloader true"; + lines << "bootloader " << QString::fromStdString(chosen_disk); } switch(this->binsh) { |