mirror of
https://github.com/godotengine/godot.git
synced 2024-12-03 09:52:18 +08:00
Redraw on item list custom bg/fg colour change
This commit is contained in:
parent
a7f96e07d0
commit
738b0fdae5
@ -245,6 +245,7 @@ void ItemList::set_item_custom_bg_color(int p_idx, const Color &p_custom_bg_colo
|
||||
ERR_FAIL_INDEX(p_idx, items.size());
|
||||
|
||||
items.write[p_idx].custom_bg = p_custom_bg_color;
|
||||
update();
|
||||
}
|
||||
|
||||
Color ItemList::get_item_custom_bg_color(int p_idx) const {
|
||||
@ -257,6 +258,7 @@ void ItemList::set_item_custom_fg_color(int p_idx, const Color &p_custom_fg_colo
|
||||
ERR_FAIL_INDEX(p_idx, items.size());
|
||||
|
||||
items.write[p_idx].custom_fg = p_custom_fg_color;
|
||||
update();
|
||||
}
|
||||
|
||||
Color ItemList::get_item_custom_fg_color(int p_idx) const {
|
||||
|
Loading…
Reference in New Issue
Block a user