dolfin team mailing list archive
-
dolfin team
-
Mailing list archive
-
Message #22096
[Bug 676733] Re: Plot title does not update from Python
Not sure it's worth the trouble to fix this. I made an attempt but got
lost in the Viper code. Plotting needs an overhaul in the future (Viper
rewrite) so I'm retargeting this to 1.1.
** Changed in: dolfin
Milestone: 0.9.11 => 1.1.0
--
You received this bug notification because you are a member of DOLFIN
Team, which is subscribed to DOLFIN.
https://bugs.launchpad.net/bugs/676733
Title:
Plot title does not update from Python
Status in DOLFIN:
Confirmed
Bug description:
When plotting from Python, the plot title does not update. Below code
reproduces the issue.
from dolfin import *
mesh = UnitSquare(12, 12)
plot(mesh, title="AAAAA", interactive=True)
plot(mesh, title="BBBBB", interactive=True)
References