calamares-packaging/debian/patches/fix-defaultde-variable.patch

14 lines
707 B
Diff
Raw Normal View History

Description: Fix default desktop environment variable in displaymanager.
Author: Walter Lapchynski <wxl@ubuntu.com>
2018-08-21 00:18:28 -05:00
--- a/src/modules/displaymanager/main.py
+++ b/src/modules/displaymanager/main.py
@@ -398,7 +398,7 @@ def run():
username = libcalamares.globalstorage.value("autologinUser")
root_mount_point = libcalamares.globalstorage.value("rootMountPoint")
- if "default_desktop_environment" in libcalamares.job.configuration:
+ if "defaultDesktopEnvironment" in libcalamares.job.configuration:
entry = libcalamares.job.configuration["defaultDesktopEnvironment"]
default_desktop_environment = DesktopEnvironment(
entry["executable"], entry["desktopFile"]