@@ -14,6 +14,7 @@ Changelog
* Fixed opening projects from the menubar when in the welcome panel.
* Fixed projects opened from the menubar not being added to the recent projects list.
* Fixed deploy getting stuck.
+* Linux: fixed launching editor under Wayland.
0.44.0
------
@@ -2698,6 +2698,9 @@ public static int main(string[] args)
return 1;
}
+#if CROWN_PLATFORM_LINUX
+ Gdk.set_allowed_backends("x11");
+#endif
LevelEditorApplication app = new LevelEditorApplication();
return app.run(args);