浏览代码

Examples: Fix webgl_geometry_spline_editor.html (#25690)

Call render() after detach so that the tooltip disappears when clicking away from the selected helper point, as one would expect.
puqeko 2 年之前
父节点
当前提交
705e47d035
共有 1 个文件被更改,包括 6 次插入1 次删除
  1. 6 1
      examples/webgl_geometry_spline_editor.html

+ 6 - 1
examples/webgl_geometry_spline_editor.html

@@ -368,7 +368,12 @@
 				onUpPosition.x = event.clientX;
 				onUpPosition.x = event.clientX;
 				onUpPosition.y = event.clientY;
 				onUpPosition.y = event.clientY;
 
 
-				if ( onDownPosition.distanceTo( onUpPosition ) === 0 ) transformControl.detach();
+				if ( onDownPosition.distanceTo( onUpPosition ) === 0 ) {
+					
+					transformControl.detach();
+					render();
+
+				}
 
 
 			}
 			}