Revert "Add new editor and default theme (WIP)"

This reverts commit f045efe007.
This commit is contained in:
volzhs 2017-05-03 06:02:06 +09:00
parent 5a6ccce97d
commit 17e8e343fb
354 changed files with 944 additions and 8751 deletions

View file

@ -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"));
}
}