Skip to content
Snippets Groups Projects
Commit a05c99c6 authored by Chris's avatar Chris
Browse files

fixed file memory leak when viewing graphs

parent 203da0be
No related branches found
No related tags found
No related merge requests found
......@@ -394,6 +394,7 @@ class GraphViewer:
def display_graph(self, graph_file):
if self.canvas:
self.canvas.get_tk_widget().destroy()
plt.close(self.fig) # Close the previous figure to release memory
img = plt.imread(os.path.join("resulting_figures", graph_file))
self.fig, self.ax = plt.subplots()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment