summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2024-05-21 15:53:21 -0500
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2024-05-21 15:53:21 -0500
commit4f8a406b0a6bb3669e63dce5074fdd9b15be3d9b (patch)
tree0376e2b43c3af467f348caafd4830228be3f8328
parent37662b329020e858308b115e971fbdeb77410bec (diff)
downloadhorizon-current.tar.gz
horizon-current.tar.bz2
horizon-current.tar.xz
horizon-current.zip
Qt UI: Handle XFCE during optional pkg selectionHEADcurrent
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
-rw-r--r--ui/qt5/horizonwizard.cc2
1 files changed, 2 insertions, 0 deletions
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";
}
}