summaryrefslogtreecommitdiff
path: root/editor/plugins
diff options
context:
space:
mode:
authorHugo Locurcio <hugo.locurcio@hugo.pro>2022-12-17 18:45:21 +0100
committerHugo Locurcio <hugo.locurcio@hugo.pro>2022-12-17 18:45:21 +0100
commita3eac5fc7cf514a69ac7801ff6bfd61276beaf08 (patch)
treeeb6d7e941b2bc7aaddfb1431ffb307737cf28d9d /editor/plugins
parentf18f2740da9cce7383c2aa41fe8d081d56c8b6cf (diff)
Move transparent background project setting to a subsection
This prevents the project setting from being located directly within a root category, which is confusing from an UX perspective in the project settings editor.
Diffstat (limited to 'editor/plugins')
-rw-r--r--editor/plugins/node_3d_editor_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/node_3d_editor_plugin.cpp b/editor/plugins/node_3d_editor_plugin.cpp
index 363ad273a8..4976c8c750 100644
--- a/editor/plugins/node_3d_editor_plugin.cpp
+++ b/editor/plugins/node_3d_editor_plugin.cpp
@@ -2606,7 +2606,7 @@ void Node3DEditorViewport::_project_settings_changed() {
const bool use_taa = GLOBAL_GET("rendering/anti_aliasing/quality/use_taa");
viewport->set_use_taa(use_taa);
- const bool transparent_background = GLOBAL_GET("rendering/transparent_background");
+ const bool transparent_background = GLOBAL_GET("rendering/viewport/transparent_background");
viewport->set_transparent_background(transparent_background);
const bool use_debanding = GLOBAL_GET("rendering/anti_aliasing/quality/use_debanding");