|
From: Arnd B. <arn...@we...> - 2004-01-09 13:58:42
|
On Fri, 9 Jan 2004, Hans-Bernhard Broeker wrote: > On Thu, 8 Jan 2004, Arnd Baecker wrote: > > > After this the mouse coordinates in the plot window > > are not updated anymore. > > That's not exactly a surprise. When you made a plot to some other > terminal driver, you essentially decoupled gnuplot_x11 from gnuplot, > making several kinds of mouse interaction unavailable. IOW, > 'set term post ; replot' essentially acts as a (temporary) equivalent > of 'set mouse off'. Ok, I wasn't aware of this - so the solution ist pretty easy, just add a replot at the end, i.e. set xrange [0:10] print "blurb" plot sin(x) set out "tst.ps" set term post rep set out set term x11 replot and the mouse works fine again. Many thanks, Arnd |