Skip to content

Commit 0a3019c

Browse files
committed
fixed 'show files' checkbox state
1 parent 031bb20 commit 0a3019c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

media/scripts/uiLogic-animations.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
let inTransientState = false;
2-
let navAnimationType = 'empty';
2+
let navAnimationType = 'initial';
33
let state_f_disabled = false;
44
let state_f_restore = false;
55

@@ -47,6 +47,7 @@ function performAnimation() {
4747
}
4848

4949
function performFilteringAnimationFw(event) {
50+
navAnimationType = 'navFw';
5051
if (event.data.marker != undefined) {
5152
if (dirMaxDepth > dirFilter.length) {
5253
setBackLabelState(false);
@@ -67,6 +68,7 @@ function performFilteringAnimationFw(event) {
6768
}
6869

6970
function performFilteringAnimationBw() {
71+
navAnimationType = 'navBw';
7072
if (dirFilter.length > 0) {
7173
enterTransientState();
7274
if (dirMaxDepth > dirFilter.length) {

0 commit comments

Comments
 (0)