From 982c79baa7fd2a20f11e08a19120882b43de16b3 Mon Sep 17 00:00:00 2001 From: t-bltg <13423344+t-bltg@users.noreply.github.com> Date: Sat, 31 Jul 2021 19:02:29 +0200 Subject: [PATCH] Gaston: drop setting termopts in _create_backend_figure --- src/backends/gaston.jl | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/backends/gaston.jl b/src/backends/gaston.jl index 1bd138ff..8f09003e 100644 --- a/src/backends/gaston.jl +++ b/src/backends/gaston.jl @@ -6,9 +6,6 @@ # Create the window/figure for this backend. function _create_backend_figure(plt::Plot{GastonBackend}) - xsize, ysize = plt.attr[:size] - Gaston.set(termopts="size $xsize,$ysize") - state_handle = Gaston.nexthandle() # for now all the figures will be kept plt.o = Gaston.newfigure(state_handle) end