Skip to content

Commit bd9afd0

Browse files
committed
fixed some stuff
1 parent b40e544 commit bd9afd0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/App.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,13 +123,13 @@ let redoMixin = {
123123
ignoredActions.has(this.doneAction[this.doneAction.length - 1].type)){
124124
this.undoneAction.push(this.doneAction.pop())
125125
}
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
126128
let finalPop = this.doneAction.pop()
127129
if(finalPop !== undefined){
128130
this.undoneAction.push(finalPop)
129131
}
130132
}
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
133133
134134
}
135135

src/css/app.styl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// app global css
22
main {
33
background: #0e0f0f;
4-
overflow: scroll;
4+
overflow: auto;
55

66
}
77

0 commit comments

Comments
 (0)