size() <= 0 and size() < 1.

This commit is contained in:
Yufeng Ying
2025-03-20 10:16:05 +08:00
parent 4f4031a675
commit 7a1a970c25
12 changed files with 16 additions and 16 deletions

View File

@@ -429,7 +429,7 @@ void ItemList::deselect(int p_idx) {
}
void ItemList::deselect_all() {
if (items.size() < 1) {
if (items.is_empty()) {
return;
}