diff options
| author | Rémi Verschelde <remi@verschelde.fr> | 2021-02-18 15:58:31 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-18 15:58:31 +0100 |
| commit | 5c2fe970b87f8e95306bad0f713567a150b1e442 (patch) | |
| tree | 206f18b3f17f5c68b664ba008f2403275b1fd583 /editor/plugins/visual_shader_editor_plugin.cpp | |
| parent | 8eaea1db5336cab62cf469c9860f18d69b4be929 (diff) | |
| parent | 64140eaf4254a9d2e1fcd87451560f13959f1d24 (diff) | |
Merge pull request #46127 from reduz/reorganize-project-settings
Reorganize Project Settings
Diffstat (limited to 'editor/plugins/visual_shader_editor_plugin.cpp')
| -rw-r--r-- | editor/plugins/visual_shader_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/visual_shader_editor_plugin.cpp b/editor/plugins/visual_shader_editor_plugin.cpp index 5061067ded..a63e641c2b 100644 --- a/editor/plugins/visual_shader_editor_plugin.cpp +++ b/editor/plugins/visual_shader_editor_plugin.cpp @@ -1023,7 +1023,7 @@ void VisualShaderEditor::_update_options_menu() { Color unsupported_color = get_theme_color("error_color", "Editor"); Color supported_color = get_theme_color("warning_color", "Editor"); - static bool low_driver = ProjectSettings::get_singleton()->get("rendering/quality/driver/driver_name") == "GLES2"; + static bool low_driver = ProjectSettings::get_singleton()->get("rendering/driver/driver_name") == "GLES2"; Map<String, TreeItem *> folders; |