From 2df87edf89cbdc0b8ee0c3df642276e002a2013a Mon Sep 17 00:00:00 2001 From: volzhs Date: Wed, 3 May 2017 06:02:06 +0900 Subject: [PATCH] Revert "Add new editor and default theme (WIP)" This reverts commit d08fe300208b01fe5b7ae8a813826d5d23c4fc8a. --- visual_script_editor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/visual_script_editor.cpp b/visual_script_editor.cpp index d515f30..f1816a7 100644 --- a/visual_script_editor.cpp +++ b/visual_script_editor.cpp @@ -490,7 +490,7 @@ void VisualScriptEditor::_update_graph(int p_only_id) { } if (EditorSettings::get_singleton()->has("editors/visual_script/color_" + node->get_category())) { - gnode->set_self_modulate(EditorSettings::get_singleton()->get("editors/visual_script/color_" + node->get_category())); + gnode->set_modulate(EditorSettings::get_singleton()->get("editors/visual_script/color_" + node->get_category())); } gnode->set_meta("__vnode", node); @@ -2833,7 +2833,7 @@ void VisualScriptEditor::_node_filter_changed(const String &p_text) { void VisualScriptEditor::_notification(int p_what) { if (p_what == NOTIFICATION_READY) { - node_filter_icon->set_texture(Control::get_icon("Search", "EditorIcons")); + node_filter_icon->set_texture(Control::get_icon("Zoom", "EditorIcons")); } }