diff options
author | Bogdan Inculet <inculet.bogdan@gmail.com> | 2024-02-17 06:06:09 +0200 |
---|---|---|
committer | Bogdan Inculet <inculet.bogdan@gmail.com> | 2024-10-15 22:28:53 +0300 |
commit | fb58ea6c89ff3f9e970e436982c76e96adccdefc (patch) | |
tree | abbca6bcf33292a8775b97ca57ccb77750ddbe95 /editor/debugger | |
parent | af77100e394dcaca609b15bef815ed17475e51ed (diff) | |
download | redot-engine-fb58ea6c89ff3f9e970e436982c76e96adccdefc.tar.gz |
Fixed Remote Nodes missing custom icons
Diffstat (limited to 'editor/debugger')
-rw-r--r-- | editor/debugger/editor_debugger_tree.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/editor/debugger/editor_debugger_tree.cpp b/editor/debugger/editor_debugger_tree.cpp index c4d7899b2d..a900842651 100644 --- a/editor/debugger/editor_debugger_tree.cpp +++ b/editor/debugger/editor_debugger_tree.cpp @@ -277,11 +277,14 @@ Variant EditorDebuggerTree::get_drag_data(const Point2 &p_point) { } String path = selected->get_text(0); + const int icon_size = get_theme_constant(SNAME("class_icon_size"), EditorStringName(Editor)); HBoxContainer *hb = memnew(HBoxContainer); TextureRect *tf = memnew(TextureRect); tf->set_texture(selected->get_icon(0)); - tf->set_stretch_mode(TextureRect::STRETCH_KEEP_CENTERED); + tf->set_custom_minimum_size(Size2(icon_size, icon_size)); + tf->set_stretch_mode(TextureRect::STRETCH_KEEP_ASPECT_CENTERED); + tf->set_expand_mode(TextureRect::EXPAND_IGNORE_SIZE); hb->add_child(tf); Label *label = memnew(Label(path)); hb->add_child(label); |