From d551f81874307b18e7f52d7486204c5cf6b49a50 Mon Sep 17 00:00:00 2001 From: volzhs Date: Tue, 17 Jul 2018 18:43:42 +0900 Subject: Fix preview texture size on Inspector --- editor/editor_properties.cpp | 22 +++++++++++++++++++++- editor/editor_properties.h | 1 + 2 files changed, 22 insertions(+), 1 deletion(-) (limited to 'editor') diff --git a/editor/editor_properties.cpp b/editor/editor_properties.cpp index 1f45902008..25b0c22109 100644 --- a/editor/editor_properties.cpp +++ b/editor/editor_properties.cpp @@ -1830,7 +1830,18 @@ void EditorPropertyResource::_resource_preview(const String &p_path, const Refget(get_edited_property()); if (p.is_valid() && p->get_instance_id() == p_obj) { if (p_preview.is_valid()) { - assign->set_icon(p_preview); + String type = p->get_class_name(); + preview->set_margin(MARGIN_LEFT, assign->get_icon()->get_width() + assign->get_stylebox("normal")->get_default_margin(MARGIN_LEFT) + get_constant("hseparation", "Button")); + if (type == "GradientTexture") { + preview->set_stretch_mode(TextureRect::STRETCH_SCALE); + assign->set_custom_minimum_size(Size2(1, 1)); + } else { + preview->set_stretch_mode(TextureRect::STRETCH_KEEP_ASPECT_CENTERED); + int thumbnail_size = EditorSettings::get_singleton()->get("filesystem/file_dialog/thumbnail_size"); + thumbnail_size *= EDSCALE; + assign->set_custom_minimum_size(Size2(1, thumbnail_size)); + } + preview->set_texture(p_preview); } } } @@ -2071,6 +2082,7 @@ void EditorPropertyResource::update_property() { #endif } + preview->set_texture(Ref()); if (res == RES()) { assign->set_icon(Ref()); assign->set_text(TTR("[empty]")); @@ -2309,6 +2321,14 @@ EditorPropertyResource::EditorPropertyResource() { assign->connect("draw", this, "_button_draw"); hbc->add_child(assign); + preview = memnew(TextureRect); + preview->set_expand(true); + preview->set_anchors_and_margins_preset(PRESET_WIDE); + preview->set_margin(MARGIN_TOP, 1); + preview->set_margin(MARGIN_BOTTOM, -1); + preview->set_margin(MARGIN_RIGHT, -1); + assign->add_child(preview); + menu = memnew(PopupMenu); add_child(menu); edit = memnew(Button); diff --git a/editor/editor_properties.h b/editor/editor_properties.h index ecccd7274d..b53d3ef40f 100644 --- a/editor/editor_properties.h +++ b/editor/editor_properties.h @@ -488,6 +488,7 @@ class EditorPropertyResource : public EditorProperty { }; Button *assign; + TextureRect *preview; Button *edit; PopupMenu *menu; EditorFileDialog *file; -- cgit v1.2.3