summaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authorRiteo <riteo@posteo.net>2024-07-26 07:29:34 +0200
committerRiteo <riteo@posteo.net>2024-07-26 07:29:34 +0200
commit755dbde8738907ac647de16ea5481eaa5e778dff (patch)
tree01d0d22c3d2874909d44d227dec67045814633d1 /main
parente343dbbcc1030f04dc5833f1c19d267a17332ca9 (diff)
downloadredot-engine-755dbde8738907ac647de16ea5481eaa5e778dff.tar.gz
Apply prefer_wayland only if no display driver is set
Before this patch any other display driver preference would be overridden.
Diffstat (limited to 'main')
-rw-r--r--main/main.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/main/main.cpp b/main/main.cpp
index e1d53e7f1b..059172b14e 100644
--- a/main/main.cpp
+++ b/main/main.cpp
@@ -2631,10 +2631,12 @@ Error Main::setup2(bool p_show_boot_logo) {
}
}
- if (prefer_wayland) {
- display_driver = "wayland";
- } else {
- display_driver = "default";
+ if (display_driver.is_empty()) {
+ if (prefer_wayland) {
+ display_driver = "wayland";
+ } else {
+ display_driver = "default";
+ }
}
}
}