From edf907213e3ea153d1ac4a1190c5b6f1417ed68f Mon Sep 17 00:00:00 2001 From: Doug Richardson Date: Thu, 13 Feb 2020 11:50:36 -0800 Subject: [PATCH] Disable video driver option in editor since switching to GLES2 would currently cause a crash on restart. Fixes #36190. --- editor/editor_node.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index f88b0715154..baee7abb32a 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -6406,6 +6406,8 @@ EditorNode::EditorNode() { video_driver->set_focus_mode(Control::FOCUS_NONE); video_driver->connect("item_selected", this, "_video_driver_selected"); video_driver->add_font_override("font", gui_base->get_font("bold", "EditorFonts")); + // TODO re-enable when GLES2 is ported + video_driver->set_disabled(true); right_menu_hb->add_child(video_driver); String video_drivers = ProjectSettings::get_singleton()->get_custom_property_info()["rendering/quality/driver/driver_name"].hint_string;