diff --git a/openmc_plotter/plotgui.py b/openmc_plotter/plotgui.py index 78a2510..cd850da 100644 --- a/openmc_plotter/plotgui.py +++ b/openmc_plotter/plotgui.py @@ -600,7 +600,8 @@ def updatePixmap(self): alpha=cv.tallyDataAlpha, cmap=cmap, norm=norm, - extent=extents) + extent=extents, + algorithm='serial') else: self.tally_image = self.ax.imshow(image_data, @@ -673,7 +674,8 @@ def annotate_mesh(self, mesh_id): colors='k', linestyles='solid', levels=np.unique(mesh_bins), - extent=data_bounds + extent=data_bounds, + algorithm='serial' ) def plotSourceSites(self): @@ -712,7 +714,8 @@ def add_outlines(self): colors='k', linestyles='solid', levels=levels, - extent=data_bounds) + extent=data_bounds, + algorithm='serial') @staticmethod def parseContoursLine(line):