You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
707 B
14 lines
707 B
Description: Fix default desktop environment variable in displaymanager.
|
|
Author: Walter Lapchynski <wxl@ubuntu.com>
|
|
--- 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"]
|