summaryrefslogtreecommitdiffstats
path: root/editor/plugins/sprite_frames_editor_plugin.h
diff options
context:
space:
mode:
authorMichael Alexsander Silva Dias <michaelalexsander@protonmail.com>2019-02-07 22:54:59 -0200
committerMichael Alexsander Silva Dias <michaelalexsander@protonmail.com>2019-02-07 22:54:59 -0200
commitd3082c99b540ec0e0fa4ec772373a8a59b50b14f (patch)
tree03debe62d4ca3b3168809aa344f892ea3d6c07ba /editor/plugins/sprite_frames_editor_plugin.h
parent3736a65f24d5e2d015f951fd8b93d9f0514f4d6a (diff)
downloadredot-engine-d3082c99b540ec0e0fa4ec772373a8a59b50b14f.tar.gz
Small changes to the SpriteFrames editor
Diffstat (limited to 'editor/plugins/sprite_frames_editor_plugin.h')
-rw-r--r--editor/plugins/sprite_frames_editor_plugin.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/editor/plugins/sprite_frames_editor_plugin.h b/editor/plugins/sprite_frames_editor_plugin.h
index 3ef4ba290b..55dd10074e 100644
--- a/editor/plugins/sprite_frames_editor_plugin.h
+++ b/editor/plugins/sprite_frames_editor_plugin.h
@@ -39,25 +39,25 @@
#include "scene/gui/split_container.h"
#include "scene/gui/tree.h"
-class SpriteFramesEditor : public PanelContainer {
-
- GDCLASS(SpriteFramesEditor, PanelContainer);
-
- Button *load;
- Button *_delete;
- Button *copy;
- Button *paste;
- Button *empty;
- Button *empty2;
- Button *move_up;
- Button *move_down;
+class SpriteFramesEditor : public HSplitContainer {
+
+ GDCLASS(SpriteFramesEditor, HSplitContainer);
+
+ ToolButton *load;
+ ToolButton *_delete;
+ ToolButton *copy;
+ ToolButton *paste;
+ ToolButton *empty;
+ ToolButton *empty2;
+ ToolButton *move_up;
+ ToolButton *move_down;
ItemList *tree;
bool loading_scene;
int sel;
HSplitContainer *split;
- Button *new_anim;
- Button *remove_anim;
+ ToolButton *new_anim;
+ ToolButton *remove_anim;
Tree *animations;
SpinBox *anim_speed;