diff options
author | Gilles Roudiere <gilles.roudiere@gmail.com> | 2017-10-14 10:08:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-14 10:08:03 +0200 |
commit | 0362a156b0ed808dac990d8bfd3653bb7ff71d1e (patch) | |
tree | 7f7abdc38d6c66d7bba722ca54cb5214920425c6 /editor/plugins/sprite_frames_editor_plugin.cpp | |
parent | 4b45ebb3de5b979f6efc8b200caacbd232381418 (diff) | |
parent | 9001ba26aa3e97f2618bf3f6a96173a126b264d9 (diff) |
Merge pull request #12079 from djrm/pr_visual_improvements
Added and improved some missing icons, plus some other visual fixes.
Diffstat (limited to 'editor/plugins/sprite_frames_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/sprite_frames_editor_plugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/plugins/sprite_frames_editor_plugin.cpp b/editor/plugins/sprite_frames_editor_plugin.cpp index 6c12b62272..dc7acd9fdc 100644 --- a/editor/plugins/sprite_frames_editor_plugin.cpp +++ b/editor/plugins/sprite_frames_editor_plugin.cpp @@ -45,7 +45,7 @@ void SpriteFramesEditor::_notification(int p_what) { if (p_what == NOTIFICATION_ENTER_TREE) { load->set_icon(get_icon("Load", "EditorIcons")); _delete->set_icon(get_icon("Remove", "EditorIcons")); - new_anim->set_icon(get_icon("Add", "EditorIcons")); + new_anim->set_icon(get_icon("New", "EditorIcons")); remove_anim->set_icon(get_icon("Remove", "EditorIcons")); } @@ -821,7 +821,7 @@ SpriteFramesEditorPlugin::SpriteFramesEditorPlugin(EditorNode *p_node) { editor = p_node; frames_editor = memnew(SpriteFramesEditor); - frames_editor->set_custom_minimum_size(Size2(0, 300)); + frames_editor->set_custom_minimum_size(Size2(0, 300) * EDSCALE); button = editor->add_bottom_panel_item("SpriteFrames", frames_editor); button->hide(); } |