Plotting breaks after show() + CTRL-C

Issue #795 wontfix
Anders Logg (Chalmers) created an issue

When using plot() from a Docker container, show() brings up the plot in my browser. An instruction is printed that I should press CTRL-C to continue, but that breaks further plotting. A test snippet follows:

from fenics import *
import matplotlib
matplotlib.use('webagg')
import matplotlib.pyplot as plt
parameters['plotting_backend'] = 'matplotlib'
sq = UnitSquareMesh(2, 2);
plot(sq)
plt.show()

Comments (3)

  1. Prof Garth Wells

    A lot has changed with plotting since this was registered, so closing now and re-open if it's still an issue.

  2. Log in to comment