Skip to content

Commit

Permalink
Reset selection state when changing groups
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelschattgen committed Dec 2, 2024
1 parent 337cb74 commit 3efe74d
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 3efe74d

Please sign in to comment.