Manual partitioning on BIOS fix

This commit is contained in:
Aaron Rainbolt 2026-03-10 12:35:54 -04:00
parent 44ba676dc5
commit a61fb184c5
Signed by untrusted user who does not match committer: arraybolt3
GPG Key ID: 39ADDC9EE23AEB08
3 changed files with 13 additions and 0 deletions

1
debian/changelog vendored
View File

@ -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 <arraybolt3@ubuntu.com> Tue, 10 Mar 2026 12:32:11 -0400

View File

@ -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;
}

View File

@ -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