Merge pull request #36191 from drichardson/fix_36190

Disable video driver option in editor
This commit is contained in:
Rémi Verschelde 2020-02-14 14:31:34 +01:00 committed by GitHub
commit 19d6d3d136
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;