Skip to content
Snippets Groups Projects
Commit 07fccf9b authored by Ruben Rodriguez's avatar Ruben Rodriguez
Browse files

ubiquity: Disable confirmation popups

parent 754ca3c1
No related branches found
No related tags found
No related merge requests found
Pipeline #923 passed
diff --git a/ubiquity/plugins/ubi-partman.py b/ubiquity/plugins/ubi-partman.py
index fc3f8c2a9e..c441f59cad 100644
--- a/ubiquity/plugins/ubi-partman.py
+++ b/ubiquity/plugins/ubi-partman.py
@@ -3421,6 +3421,11 @@ class Page(plugin.Plugin):
elif question.startswith('partman/confirm'):
description = self.extended_description(question)
+ self.preseed(question, 'true', seen=False)
+ self.succeeded = True
+ self.done = True
+ return True
+
if hasattr(self.ui, "use_zfs"):
if (self.ui.use_zfs.get_active() and self.ui.use_device.get_active()):
description = self.update_zfs_description(self.extended_description(question))
...@@ -18,12 +18,12 @@ ...@@ -18,12 +18,12 @@
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
# #
VERSION=32 VERSION=33
. ./config . ./config
# Enable full disk encryption by default. Disabled, as it hinders a11y and sighted people can choose to enable it. # Disable confirmation popups, as they are innacurate and buggy
#patch -p0 < $DATA/nabia_encrypt_by_default.patch patch -p1 < $DATA/no_confrirmation_when_crypto.patch
# Fix some gtk labels for Orca # Fix some gtk labels for Orca
patch -p1 < $DATA/a11y.patch patch -p1 < $DATA/a11y.patch
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment