Skip to content

Commit

Permalink
fix: The AddRemove menu is not displayed when the List is fixedSize.
Browse files Browse the repository at this point in the history
  • Loading branch information
fuqunaga committed Sep 11, 2024
1 parent 2eb829c commit ca01c8a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ private Element GetOrCreateItemElement(int index)
}

element = _createItemElement(itemBinder, index);
if (!isReadOnly)
if (!isReadOnly && !option.fixedSize)
{
element = AddPopupMenu(element, index);
}
Expand Down

0 comments on commit ca01c8a

Please sign in to comment.