diff options
Diffstat (limited to 'tools/editor/editor_node.cpp')
| -rw-r--r-- | tools/editor/editor_node.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/editor/editor_node.cpp b/tools/editor/editor_node.cpp index 6008021b16..dc6e832829 100644 --- a/tools/editor/editor_node.cpp +++ b/tools/editor/editor_node.cpp @@ -5975,7 +5975,8 @@ EditorNode::EditorNode() {  	add_editor_plugin( memnew( Polygon2DEditorPlugin(this) ) );  	add_editor_plugin( memnew( LightOccluder2DEditorPlugin(this) ) );  	add_editor_plugin( memnew( NavigationPolygonEditorPlugin(this) ) ); -	add_editor_plugin( memnew( ColorRampEditorPlugin(this) ) ); +	add_editor_plugin( memnew( ColorRampEditorPlugin(this,true) ) ); +	add_editor_plugin( memnew( ColorRampEditorPlugin(this,false) ) );  	add_editor_plugin( memnew( CollisionShape2DEditorPlugin(this) ) );  	for(int i=0;i<EditorPlugins::get_plugin_count();i++)  |