Merge pull request #66961 from Rindbee/fix-set_custom_color
Fix wrong condition used in `set_custom_color`
This commit is contained in:
commit
d414872bfe
1 changed files with 1 additions and 1 deletions
|
@ -1163,7 +1163,7 @@ bool TreeItem::is_editable(int p_column) {
|
|||
void TreeItem::set_custom_color(int p_column, const Color &p_color) {
|
||||
ERR_FAIL_INDEX(p_column, cells.size());
|
||||
|
||||
if (cells[p_column].custom_color == true) {
|
||||
if (cells[p_column].custom_color && cells[p_column].color == p_color) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue