summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2022-09-03 13:40:53 +0300
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2022-09-03 19:16:03 +0300
commit57829b7cc4e3a61be3bbbaeff59410becc1b0850 (patch)
tree98d7bfb9e58e67fa90a9d57573dab36133b45983 /main
parentb8977ca333fd0334669de0253f86abf6d401256a (diff)
Re-enable per-pixel transparency support on Linux, macOS, and Windows (for Vulkan and OpenGL rendering drivers).
Diffstat (limited to 'main')
-rw-r--r--main/main.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/main/main.cpp b/main/main.cpp
index a0d2f594ac..650d1159e0 100644
--- a/main/main.cpp
+++ b/main/main.cpp
@@ -1555,17 +1555,11 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph
GLOBAL_DEF("internationalization/locale/include_text_server_data", false);
OS::get_singleton()->_allow_hidpi = GLOBAL_DEF("display/window/dpi/allow_hidpi", true);
-
- // FIXME: Restore support.
-#if 0
- //OS::get_singleton()->_allow_layered = GLOBAL_DEF("display/window/per_pixel_transparency/allowed", false);
- video_mode.layered = GLOBAL_DEF("display/window/per_pixel_transparency/enabled", false);
-#endif
+ OS::get_singleton()->_allow_layered = GLOBAL_DEF("display/window/per_pixel_transparency/allowed", false);
if (editor || project_manager) {
// The editor and project manager always detect and use hiDPI if needed
OS::get_singleton()->_allow_hidpi = true;
- OS::get_singleton()->_allow_layered = false;
}
if (rtm == -1) {