Skip to content

Commit

Permalink
fix #995 ListItems do not propagate Click Events
Browse files Browse the repository at this point in the history
  • Loading branch information
vegegoku committed Jan 8, 2025
1 parent 716a111 commit 309658e
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,6 @@ public void bindTo(ListGroup<T> owner) {
* @param evt The event that triggered the selection attempt.
*/
private void trySelect(Event evt) {
evt.stopPropagation();
evt.preventDefault();
MouseEvent mouseEvent = Js.uncheckedCast(evt);
if (selectable
&& (isNull(listGroup) || listGroup.isSelectable())
Expand Down

0 comments on commit 309658e

Please sign in to comment.