From a066f01bb274f38ade68abb6f8e2682c828649b2 Mon Sep 17 00:00:00 2001 From: Tim Edwards Date: Thu, 8 Oct 2020 14:04:28 -0400 Subject: [PATCH] Upon reflection, decided to just omit the cursor box when generating an SVG plot. --- plot/plotCmd.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plot/plotCmd.c b/plot/plotCmd.c index 9d72f60f..f59a8821 100644 --- a/plot/plotCmd.c +++ b/plot/plotCmd.c @@ -277,7 +277,9 @@ CmdPlot(w, cmd) /* the window border widgets from the rendered display. */ window->w_flags &= ~(WIND_SCROLLABLE | WIND_SCROLLBARS | WIND_CAPTION | WIND_BORDER); + DBWHLRemoveClient(DBWDrawBox); // Prevent drawing the cursor box GrTCairoPlotSVG(cmd->tx_argv[2], window); + DBWHLAddClient(DBWDrawBox); // Restore drawing the cursor box window->w_flags = flags; return; #endif