Wed 28 Sep 2016 06:32:39 PM UTC, original submission:
There was recently a "position" option added to qt and wxt terminals in gnuplot. That's nice, but the consequence is that sometimes the window is initially drawn in the default gnuplot location then jumps immediately to the prescribed position. For example, with gnuplot/qt-term I am using imshow(), and imshow() calls the following:
colormap(gray());
Similary,
figure();
will cause a jump as well. Try something like
[exit]
[launch]
colormap(gray());
So, I'm wondering if we can take out some initial draw or add some missing position property at the start that will get rid of that window jump.
As a side note, the fact that position applies to X11, Windows, (and now) qt, wxt is already noted at one location in the code, so the following redundancy can be removed.
|