瀏覽代碼

Editor: Avoid runtime error in outliner.

Mugen87 5 年之前
父節點
當前提交
771c7f4961
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      editor/js/libs/ui.three.js

+ 1 - 1
editor/js/libs/ui.three.js

@@ -506,7 +506,7 @@ UIOutliner.prototype.setOptions = function ( options ) {
 
 	function onDrop( event ) {
 
-		if ( this === currentDrag ) return;
+		if ( this === currentDrag || currentDrag === undefined ) return;
 
 		this.className = 'option';