From 4d6ad9316ae8f3efeda808662602da98a3f50166 Mon Sep 17 00:00:00 2001 From: Shekar V Date: Mon, 20 May 2024 15:26:39 -0400 Subject: [PATCH] Removed extra parameter in fillPolyRaster --- gui/control_main.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/gui/control_main.py b/gui/control_main.py index 34ff4a97..85f20961 100644 --- a/gui/control_main.py +++ b/gui/control_main.py @@ -2051,9 +2051,7 @@ def displayXrecRaster(self, xrecRasterFlag): if rasterDef["status"] == RasterStatus.DRAWN.value: self.drawPolyRaster(rasterReq) elif rasterDef["status"] == RasterStatus.READY_FOR_FILL.value: - self.fillPolyRaster( - rasterReq, waitTime=getBlConfig(RASTER_GUI_XREC_FILL_DELAY) - ) + self.fillPolyRaster(rasterReq) logger.info("polyraster filled by displayXrecRaster") elif rasterDef["status"] == RasterStatus.READY_FOR_SNAPSHOT.value: if self.controlEnabled():