From a61fb184c5444a581d5b0fc7d238548663c12a97 Mon Sep 17 00:00:00 2001 From: Aaron Rainbolt Date: Tue, 10 Mar 2026 12:35:54 -0400 Subject: [PATCH] Manual partitioning on BIOS fix --- debian/changelog | 1 + .../populate-bootloader-installation-path.patch | 11 +++++++++++ debian/patches/series | 1 + 3 files changed, 13 insertions(+) create mode 100644 debian/patches/populate-bootloader-installation-path.patch diff --git a/debian/changelog b/debian/changelog index f4a4559..97f1e2c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ calamares (3.3.14-0ubuntu21) resolute; urgency=medium * Fix icon corruption on the "Users" page (LP: #2139358) + * Fix initial population of bootloader installation path (LP: #2124977) -- Aaron Rainbolt Tue, 10 Mar 2026 12:32:11 -0400 diff --git a/debian/patches/populate-bootloader-installation-path.patch b/debian/patches/populate-bootloader-installation-path.patch new file mode 100644 index 0000000..41b42db --- /dev/null +++ b/debian/patches/populate-bootloader-installation-path.patch @@ -0,0 +1,11 @@ +--- a/src/modules/partition/gui/PartitionPage.cpp ++++ b/src/modules/partition/gui/PartitionPage.cpp +@@ -545,7 +545,7 @@ PartitionPage::editExistingPartition( De + void + PartitionPage::updateBootLoaderInstallPath() + { +- if ( m_isEfi || !m_ui->bootLoaderComboBox->isVisible() ) ++ if ( m_isEfi ) + { + return; + } diff --git a/debian/patches/series b/debian/patches/series index e7cbddd..fff0b12 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -5,3 +5,4 @@ grub-debconf-config.patch unmount-encrypted-devices.patch fix-checkbox-warning-confusion.patch repair-icon-size.patch +populate-bootloader-installation-path.patch