Skip to content

Commit 1deb317

Browse files
committed
Don't disable mouse interaction upon call to cla() in mplot3d
1 parent 332faa6 commit 1deb317

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/mpl_toolkits/mplot3d/axes3d.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -824,7 +824,9 @@ def can_pan(self) :
824824
def cla(self):
825825
"""Clear axes and disable mouse button callbacks.
826826
"""
827-
self.disable_mouse_rotation()
827+
# Disabling mouse interaction might have been needed a long
828+
# time ago, but I can't find a reason for it now - BVR (2012-03)
829+
#self.disable_mouse_rotation()
828830
self.zaxis.cla()
829831

830832
# TODO: Support sharez

0 commit comments

Comments
 (0)