Skip to content

Commit

Permalink
Merge pull request #1562 from michaelschattgen/fix/group-entry-selection
Browse files Browse the repository at this point in the history
Reset selection state when changing groups
  • Loading branch information
alexbakker authored Dec 2, 2024
2 parents fa07337 + 3efe74d commit 8147d07
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,10 @@ private void addChipTo(ChipGroup chipGroup, VaultGroupModel group) {

chip.setOnCheckedChangeListener((group1, isChecked) -> {
Set<UUID> groupFilter = new HashSet<>();
if (_actionMode != null) {
_actionMode.finish();
}

setSaveChipVisibility(true);

if (!isChecked) {
Expand Down

0 comments on commit 8147d07

Please sign in to comment.