fixed filters on arranged map pages

This commit is contained in:
Connor Turland 2012-12-05 16:04:55 -05:00
parent 38ef59b951
commit 696d094118

View file

@ -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 {