Don't crash when changing the autosave interval.
parent
5c754bd994
commit
a4e487d298
|
@ -17,6 +17,7 @@ Other new features:
|
||||||
Bug fixes:
|
Bug fixes:
|
||||||
* Do not remove autosaves after successfully opening a file, preventing
|
* Do not remove autosaves after successfully opening a file, preventing
|
||||||
data loss in case of two abnormal terminations in a row.
|
data loss in case of two abnormal terminations in a row.
|
||||||
|
* Do not crash when changing autosave interval.
|
||||||
* Three.js: correctly respond to controls when browser zoom is used.
|
* Three.js: correctly respond to controls when browser zoom is used.
|
||||||
* OS X: do not completely hide main window when defocused.
|
* OS X: do not completely hide main window when defocused.
|
||||||
|
|
||||||
|
|
|
@ -453,6 +453,7 @@ bool TextWindow::EditControlDoneForConfiguration(const char *s) {
|
||||||
} else {
|
} else {
|
||||||
Error("Bad format: specify interval in integral minutes");
|
Error("Bad format: specify interval in integral minutes");
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
default: return false;
|
default: return false;
|
||||||
|
|
Loading…
Reference in New Issue