Skip to content

Commit

Permalink
refactor: move figure header and footer commands into context manager
Browse files Browse the repository at this point in the history
  • Loading branch information
gtdang authored and ntolley committed Oct 4, 2024
1 parent 7a8a36a commit 2376a64
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions hnn_core/gui/_viz_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -763,9 +763,8 @@ def _add_figure(b, widgets, data, template_type, scale=0.95, dpi=96):
with plt.ioff():
fig = plt.figure(figsize=figsize, dpi=dpi, layout='constrained')
axd = fig.subplot_mosaic(mosaic, **kwargs)

fig.canvas.header_visible = False
fig.canvas.footer_visible = False
fig.canvas.header_visible = False
fig.canvas.footer_visible = False

if data['use_ipympl'] is False:
plt.show()
Expand Down

0 comments on commit 2376a64

Please sign in to comment.