Explorar o código

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 %!s(int64=2) %!d(string=hai) anos
pai
achega
705e47d035
Modificáronse 1 ficheiros con 6 adicións e 1 borrados
  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.y = event.clientY;
 
-				if ( onDownPosition.distanceTo( onUpPosition ) === 0 ) transformControl.detach();
+				if ( onDownPosition.distanceTo( onUpPosition ) === 0 ) {
+					
+					transformControl.detach();
+					render();
+
+				}
 
 			}