fixed filters on arranged map pages
This commit is contained in:
parent
38ef59b951
commit
696d094118
1 changed files with 9 additions and 0 deletions
|
@ -146,6 +146,9 @@
|
||||||
else if (rg != null) {
|
else if (rg != null) {
|
||||||
showAll(rg);
|
showAll(rg);
|
||||||
}
|
}
|
||||||
|
else if (map != null) {
|
||||||
|
showAll(map);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// this means that we are on a card view
|
// this means that we are on a card view
|
||||||
else {
|
else {
|
||||||
|
@ -166,6 +169,9 @@
|
||||||
else if (rg != null) {
|
else if (rg != null) {
|
||||||
hideAll(rg);
|
hideAll(rg);
|
||||||
}
|
}
|
||||||
|
else if (map != null) {
|
||||||
|
hideAll(map);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// this means that we are on a card view
|
// this means that we are on a card view
|
||||||
else {
|
else {
|
||||||
|
@ -188,6 +194,9 @@
|
||||||
else if (rg != null) {
|
else if (rg != null) {
|
||||||
switchVisible(rg, category);
|
switchVisible(rg, category);
|
||||||
}
|
}
|
||||||
|
else if (map != null) {
|
||||||
|
switchVisible(map, category);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// this means that we are on a card view
|
// this means that we are on a card view
|
||||||
else {
|
else {
|
||||||
|
|
Loading…
Reference in a new issue