summaryrefslogtreecommitdiff
path: root/editor/project_manager.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2019-07-26 18:55:31 +0200
committerGitHub <noreply@github.com>2019-07-26 18:55:31 +0200
commit39579d2a6d1a59edfd49d054804f173f0d25d900 (patch)
treed867148b284847913843e6d9c0693b69d7fa05e4 /editor/project_manager.cpp
parent67ce3f7424250907681e50e3340a3950b000ca95 (diff)
parent6f6a9d9c09c0cca1afc8701cccbf504c52054aad (diff)
Merge pull request #30839 from Calinou/simplify-dim-editor-settings
Simplify editor settings related to window dimming
Diffstat (limited to 'editor/project_manager.cpp')
-rw-r--r--editor/project_manager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/project_manager.cpp b/editor/project_manager.cpp
index 48a587d4db..feb2cdd071 100644
--- a/editor/project_manager.cpp
+++ b/editor/project_manager.cpp
@@ -1730,7 +1730,7 @@ void ProjectManager::_dim_window() {
// Dim the project manager window while it's quitting to make it clearer that it's busy.
// No transition is applied, as the effect needs to be visible immediately
- float c = 1.0f - float(EDITOR_GET("interface/editor/dim_amount"));
+ float c = 0.4f;
Color dim_color = Color(c, c, c);
gui_base->set_modulate(dim_color);
}