From 4f8a406b0a6bb3669e63dce5074fdd9b15be3d9b Mon Sep 17 00:00:00 2001 From: "A. Wilcox" Date: Tue, 21 May 2024 15:53:21 -0500 Subject: Qt UI: Handle XFCE during optional pkg selection Since XFCE isn't specified in the `switch` statement, it hits `default`. The default statement assumes Plasma is desired, so the entirety of the KDE software suite is installed when XFCE is chosen. This fixes it so only the optional Xorg utilities are installed. Closes: #384 --- ui/qt5/horizonwizard.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ui/qt5/horizonwizard.cc b/ui/qt5/horizonwizard.cc index 2872eb6..b3e53fd 100644 --- a/ui/qt5/horizonwizard.cc +++ b/ui/qt5/horizonwizard.cc @@ -513,6 +513,8 @@ QString optionalPackagesForDesktop(HorizonWizard::DesktopType desktop) { return "x11 kde-games kde-graphics kde-multimedia kde-utilities calligra trojita"; case HorizonWizard::MATE: return "x11 abiword gnumeric"; + case HorizonWizard::XFCE: + return "x11"; } } -- cgit v1.2.3-70-g09d2