Skip to content

Commit

Permalink
Fix 3d plot
Browse files Browse the repository at this point in the history
  • Loading branch information
pgleeson committed Dec 14, 2023
1 parent c686cd3 commit 8342b57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neuromllite/gui/NMLliteUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -1128,7 +1128,7 @@ def replotSimResults(self):
# ax_3d = fig.add_subplot(111)
from mpl_toolkits.mplot3d import Axes3D

ax_3d = fig.gca(projection="3d")
ax_3d = fig.add_subplot(projection="3d")

ax_3d.clear()
xs = self.current_traces[info["x_axis"]]
Expand Down

0 comments on commit 8342b57

Please sign in to comment.