summaryrefslogtreecommitdiff
path: root/ui/qt5/partitionchoicepage.cc
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2023-11-17 21:49:40 -0600
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2023-11-17 21:49:40 -0600
commit8801c9ccaeaab68174312cf025bce771e2ea77df (patch)
treec3a905cc88fe498c74403024b3ae7f500e3b6bae /ui/qt5/partitionchoicepage.cc
parent0eb21f964b20d09c1c18a4d26231910b36719183 (diff)
downloadhorizon-8801c9ccaeaab68174312cf025bce771e2ea77df.tar.gz
horizon-8801c9ccaeaab68174312cf025bce771e2ea77df.tar.bz2
horizon-8801c9ccaeaab68174312cf025bce771e2ea77df.tar.xz
horizon-8801c9ccaeaab68174312cf025bce771e2ea77df.zip
Qt UI: Remove "Use available space" option
Way too buggy in its present state, unfortunately. Needs a lot more logic. Closes: #377, #376
Diffstat (limited to 'ui/qt5/partitionchoicepage.cc')
-rw-r--r--ui/qt5/partitionchoicepage.cc12
1 files changed, 0 insertions, 12 deletions
diff --git a/ui/qt5/partitionchoicepage.cc b/ui/qt5/partitionchoicepage.cc
index 71979f2..383d50c 100644
--- a/ui/qt5/partitionchoicepage.cc
+++ b/ui/qt5/partitionchoicepage.cc
@@ -37,18 +37,6 @@ PartitionChoicePage::PartitionChoicePage(QWidget *parent)
eraseLabel->setTextFormat(Qt::RichText);
eraseLabel->setWordWrap(true);
- fitInButton = new QRadioButton(tr("Use &Free Space"));
- fitInButton->setHidden(true);
- fitInButton->setWhatsThis(tr("This option will install Adélie Linux in to the free space present on the selected disk. No existing data will be erased."));
- connect(fitInButton, &QRadioButton::clicked, [=] {
- horizonWizard()->auto_part = true;
- horizonWizard()->erase = false;
- });
- fitInLabel = new QLabel(tr("The free space on the disk will be automatically partitioned for use with Adélie. Existing data will be preserved."));
- fitInLabel->setHidden(true);
- fitInLabel->setIndent(25);
- fitInLabel->setWordWrap(true);
-
useExistingButton = new QRadioButton(tr("Use Existing &Partition"));
useExistingButton->setHidden(true);
useExistingButton->setWhatsThis(tr("This option will allow you to choose a partition already present on the selected disk for installation. You may select to erase the partition, or install to a partition that is already formatted."));