diff options
author | Juan Linietsky <reduzio@gmail.com> | 2014-09-17 10:44:22 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2014-09-17 10:44:22 -0300 |
commit | 02a694ff48fa8bd340777dbbd22fd01b97584395 (patch) | |
tree | 094dfa91b8c20f79030ee18e3334e21f88b0f9fc /tools/editor/plugins/particles_editor_plugin.h | |
parent | f304c9f93a4c0f01e884064e8e7a2f293d5486f6 (diff) | |
parent | e6df7da6abe89979dea501cd48ff288f27a3c394 (diff) |
Merge pull request #580 from marynate/PR-fix-particles-editor-menu
Particles editor menu not display in proper position
Diffstat (limited to 'tools/editor/plugins/particles_editor_plugin.h')
-rw-r--r-- | tools/editor/plugins/particles_editor_plugin.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/editor/plugins/particles_editor_plugin.h b/tools/editor/plugins/particles_editor_plugin.h index ba655c9b39..3e4b0f73aa 100644 --- a/tools/editor/plugins/particles_editor_plugin.h +++ b/tools/editor/plugins/particles_editor_plugin.h @@ -43,7 +43,8 @@ class ParticlesEditor : public Control { OBJ_TYPE(ParticlesEditor, Control ); Panel *panel; - MenuButton * options; + MenuButton *options; + HBoxContainer *particles_editor_hb; Particles *node; @@ -78,6 +79,8 @@ class ParticlesEditor : public Control { void _populate(); +friend class ParticlesEditorPlugin; + protected: void _notification(int p_notification); |