浏览代码

Fix icon in drag preview of scripts/docs

Michael Alexsander 3 年之前
父节点
当前提交
8383115666
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      editor/plugins/script_editor_plugin.cpp

+ 1 - 0
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));