diff options
author | Nico Mitchell <namitc02@louisville.edu> | 2020-04-12 21:45:01 -0400 |
---|---|---|
committer | Nico Mitchell <namitc02@louisville.edu> | 2020-04-12 22:15:20 -0400 |
commit | 7211ad73bcd71cf25a0cca8ddf5d54422f5fc052 (patch) | |
tree | a3345a515a94c45f748ee765555301534f5db429 /editor/plugins/cpu_particles_3d_editor_plugin.cpp | |
parent | 06748a2b5f3190c036dabd2560b39bde7676706d (diff) | |
download | redot-engine-7211ad73bcd71cf25a0cca8ddf5d54422f5fc052.tar.gz |
Remove separators from particles menus
Diffstat (limited to 'editor/plugins/cpu_particles_3d_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/cpu_particles_3d_editor_plugin.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/editor/plugins/cpu_particles_3d_editor_plugin.cpp b/editor/plugins/cpu_particles_3d_editor_plugin.cpp index 0c2fbaf62a..59a353a581 100644 --- a/editor/plugins/cpu_particles_3d_editor_plugin.cpp +++ b/editor/plugins/cpu_particles_3d_editor_plugin.cpp @@ -104,9 +104,8 @@ CPUParticles3DEditor::CPUParticles3DEditor() { particles_editor_hb->hide(); options->set_text(TTR("CPUParticles3D")); - options->get_popup()->add_item(TTR("Create Emission Points From Node"), MENU_OPTION_CREATE_EMISSION_VOLUME_FROM_NODE); - options->get_popup()->add_separator(); options->get_popup()->add_item(TTR("Restart"), MENU_OPTION_RESTART); + options->get_popup()->add_item(TTR("Create Emission Points From Node"), MENU_OPTION_CREATE_EMISSION_VOLUME_FROM_NODE); options->get_popup()->connect("id_pressed", callable_mp(this, &CPUParticles3DEditor::_menu_option)); } |