mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-04-22 06:49:12 +00:00
Merge pull request #1562 from michaelschattgen/fix/group-entry-selection
Reset selection state when changing groups
This commit is contained in:
commit
8147d07606
1 changed files with 4 additions and 0 deletions
|
@ -312,6 +312,10 @@ public class MainActivity extends AegisActivity implements EntryListView.Listene
|
||||||
|
|
||||||
chip.setOnCheckedChangeListener((group1, isChecked) -> {
|
chip.setOnCheckedChangeListener((group1, isChecked) -> {
|
||||||
Set<UUID> groupFilter = new HashSet<>();
|
Set<UUID> groupFilter = new HashSet<>();
|
||||||
|
if (_actionMode != null) {
|
||||||
|
_actionMode.finish();
|
||||||
|
}
|
||||||
|
|
||||||
setSaveChipVisibility(true);
|
setSaveChipVisibility(true);
|
||||||
|
|
||||||
if (!isChecked) {
|
if (!isChecked) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue