octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #41895] plot content is lost with fltk when vi


From: Doug Stewart
Subject: [Octave-bug-tracker] [bug #41895] plot content is lost with fltk when visible was off
Date: Fri, 21 Mar 2014 11:17:47 +0000
User-agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:28.0) Gecko/20100101 Firefox/28.0

Follow-up Comment #11, bug #41895 (project octave):

Thanks I was the original poster and I would like to document the results.
There are 3 work arounds.

1)
figure ("visible", "off");
...
set (gcf, "visible", "on");

2)
axes
set(gcf,""visible", "off");
...
set (gcf, "visible", "on");

3)
hplt = plot (args{:});
set (gcf,"visible","off");
  ...
set (gcf, "visible", "on");

We chose 2) when we fixed rlocus but maybe 1) is better.

I think we can close this now.
At least it is documented.


    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?41895>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]