Skip to content

Commit

Permalink
Don't end intermission on backend restart (#286)
Browse files Browse the repository at this point in the history
  • Loading branch information
frank-weinberg authored and brian-brazil committed May 24, 2019
1 parent 1ca97f5 commit 1ad7459
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ protected void valueChanged(PermanentProperty prop, Object value, Object last, F
if (prop == Value.TIME && isTimeAtEnd()) {
stop();
}
if (prop == Value.MAXIMUM_TIME && isCountDirectionDown()) {
if (prop == Value.MAXIMUM_TIME && isCountDirectionDown() && flag != Flag.FROM_AUTOSAVE) {
changeTime((Long)value - (Long)last);
}
if (prop == Value.DIRECTION) {
Expand Down

0 comments on commit 1ad7459

Please sign in to comment.