mirror of
https://github.com/Redot-Engine/redot-engine.git
synced 2025-12-06 07:17:42 -05:00
Fix Huge .tscn Icon and icon in background of File System panel
This commit is contained in:
@@ -638,6 +638,16 @@ Size2 ItemList::Item::get_icon_size() const {
|
||||
return size_result;
|
||||
}
|
||||
|
||||
void ItemList::set_fixed_tag_icon_size(const Size2i &p_size) {
|
||||
if (fixed_tag_icon_size == p_size) {
|
||||
return;
|
||||
}
|
||||
|
||||
fixed_tag_icon_size = p_size;
|
||||
queue_redraw();
|
||||
shape_changed = true;
|
||||
}
|
||||
|
||||
void ItemList::gui_input(const Ref<InputEvent> &p_event) {
|
||||
ERR_FAIL_COND(p_event.is_null());
|
||||
|
||||
@@ -1225,13 +1235,21 @@ void ItemList::_notification(int p_what) {
|
||||
}
|
||||
|
||||
if (items[i].tag_icon.is_valid()) {
|
||||
Size2 tag_icon_size;
|
||||
if (fixed_tag_icon_size.x > 0 && fixed_tag_icon_size.y > 0) {
|
||||
tag_icon_size = fixed_tag_icon_size;
|
||||
} else {
|
||||
tag_icon_size = items[i].tag_icon->get_size();
|
||||
}
|
||||
|
||||
Point2 draw_pos = items[i].rect_cache.position;
|
||||
draw_pos.x += theme_cache.h_separation / 2;
|
||||
draw_pos.y += theme_cache.v_separation / 2;
|
||||
if (rtl) {
|
||||
draw_pos.x = size.width - draw_pos.x - items[i].tag_icon->get_width();
|
||||
draw_pos.x = size.width - draw_pos.x - tag_icon_size.x;
|
||||
}
|
||||
draw_texture(items[i].tag_icon, draw_pos + base_ofs);
|
||||
|
||||
draw_texture_rect(items[i].tag_icon, Rect2(draw_pos + base_ofs, tag_icon_size));
|
||||
}
|
||||
|
||||
if (!items[i].text.is_empty()) {
|
||||
|
||||
Reference in New Issue
Block a user