diff options
author | Michael Alexsander <michaelalexsander@protonmail.com> | 2022-01-21 13:00:02 -0300 |
---|---|---|
committer | Michael Alexsander <michaelalexsander@protonmail.com> | 2022-01-21 13:00:02 -0300 |
commit | 83831156665cc7cc9770bea81ce17b8322e1355e (patch) | |
tree | c2f1b557e52b4baf044341ca5d4572e20dee429f | |
parent | a257ceb53d40eb284019775ac70c2089cea596d9 (diff) |
Fix icon in drag preview of scripts/docs
-rw-r--r-- | editor/plugins/script_editor_plugin.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/plugins/script_editor_plugin.cpp b/editor/plugins/script_editor_plugin.cpp index d2a09b3c30..6ef5d27ff1 100644 --- a/editor/plugins/script_editor_plugin.cpp +++ b/editor/plugins/script_editor_plugin.cpp @@ -2794,6 +2794,7 @@ Variant ScriptEditor::get_drag_data_fw(const Point2 &p_point, Control *p_from) { if (!preview_icon.is_null()) { TextureRect *tf = memnew(TextureRect); tf->set_texture(preview_icon); + tf->set_stretch_mode(TextureRect::STRETCH_KEEP_CENTERED); drag_preview->add_child(tf); } Label *label = memnew(Label(preview_name)); |