File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -123,13 +123,13 @@ let redoMixin = {
123
123
ignoredActions .has (this .doneAction [this .doneAction .length - 1 ].type )){
124
124
this .undoneAction .push (this .doneAction .pop ())
125
125
}
126
+ // if we get here, that means we have undone all "useless" actions
127
+ // so we have to do one more final pop and push, have to make sure it isn't null though
126
128
let finalPop = this .doneAction .pop ()
127
129
if (finalPop !== undefined ){
128
130
this .undoneAction .push (finalPop)
129
131
}
130
132
}
131
- // if we get here, that means we have undone all "useless" actions
132
- // so we have to do one more final pop and push, have to make sure it isn't null though
133
133
134
134
}
135
135
Original file line number Diff line number Diff line change 1
1
// app global css
2
2
main {
3
3
background : #0e 0f 0f ;
4
- overflow : scroll ;
4
+ overflow : auto ;
5
5
6
6
}
7
7
You can’t perform that action at this time.
0 commit comments