Skip to content

Commit cb94a60

Browse files
committed
Merge pull request #752 from WeatherGod/mplot3d/cla_fix
mplot3d/cla fix
2 parents ce32dd2 + 1deb317 commit cb94a60

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)