提交 2042a3e4 编写于 作者: M Mr.doob

Editor: Save scene when enabling autosave.

上级 83626ee5
......@@ -10,7 +10,15 @@ Menubar.Status = function ( editor ) {
var checkbox = new UI.Checkbox( editor.config.getKey( 'autosave' ) );
checkbox.onChange( function () {
editor.config.setKey( 'autosave', this.getValue() );
var value = this.getValue();
editor.config.setKey( 'autosave', value );
if ( value === true ) {
editor.signals.sceneGraphChanged.dispatch();
}
} );
container.add( checkbox );
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册