Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 95422be0 authored by Jon Mann's avatar Jon Mann
Browse files

Prevent counting items more than once during multi-select.

Test: Ran full test suite
Bug: 35099635
Change-Id: I9b447297987150bbf8354d28edf518f297ee95f0
parent 26698740
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -500,7 +500,7 @@ public final class SelectionManager {
            }
            if (selected) {
                boolean canSelect = canSetState(id, true);
                if (canSelect) {
                if (canSelect && !mSelection.mSelection.contains(id)) {
                    mSelection.mProvisionalSelection.add(id);
                }
            } else {