diff options
| author | Daniel J. Ramirez | 2017-10-13 16:39:17 -0500 |
|---|---|---|
| committer | Daniel J. Ramirez | 2017-10-13 16:39:17 -0500 |
| commit | 9001ba26aa3e97f2618bf3f6a96173a126b264d9 (patch) | |
| tree | d0f44c0352694f4ad5d92f667e6fee3643020905 /editor/plugins/sprite_frames_editor_plugin.cpp | |
| parent | 4585239a4bcb5350fadc1fbe5a6db1c2e67ab06a (diff) | |
| download | godot-9001ba26aa3e97f2618bf3f6a96173a126b264d9.tar.gz godot-9001ba26aa3e97f2618bf3f6a96173a126b264d9.tar.zst godot-9001ba26aa3e97f2618bf3f6a96173a126b264d9.zip | |
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 6c12b6227..dc7acd9fd 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(); } |
