mg-pso-gui 0.0.170__py3-none-any.whl → 0.0.171__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mg-pso-gui
3
- Version: 0.0.170
3
+ Version: 0.0.171
4
4
  Summary: GUI for MG-PSO
5
5
  Author: Robert Cordingly
6
6
  Author-email: <rcording@uw.ed>
@@ -17,7 +17,7 @@ mgpsogui/gui/SetupTab/SetupTab.py,sha256=Zul86S8TesQTmijcWY394NJf1GeqVqkB2whTTIM
17
17
  mgpsogui/gui/SetupTab/StaticParameterView.py,sha256=iEG-UpBBlAJabZo3MG768oLqOROjUPc23tKOSd47IUc,2739
18
18
  mgpsogui/gui/SetupTab/StepView.py,sha256=oG5Q-3xpTRP1f_PbNvohKctrbpD63zLAJzHD00bN44k,5531
19
19
  mgpsogui/gui/SetupTab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
- mgpsogui/gui/VisualizeTab/VisualizeTab.py,sha256=cmLJLCFQycnW30X_Ps3yaWltNT7Agyq1XcWwPDWqgac,2736
20
+ mgpsogui/gui/VisualizeTab/VisualizeTab.py,sha256=8aqEw58eojSlECl6-VM5soeIa5J9Qh7MkrPfKmFcVQk,2741
21
21
  mgpsogui/gui/VisualizeTab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
22
  mgpsogui/gui/images/collapse.png,sha256=yicb16LaY7Nl5q9V8HHlht-Fbg5xU-l4_LJ_Arfmu1c,2989
23
23
  mgpsogui/gui/images/down.png,sha256=pspJkvUitD648C_2y8JLLD4Eagpk4MDEKQJGOO_yIaY,2654
@@ -32,8 +32,8 @@ mgpsogui/util/PSORunner.py,sha256=7iUYRUXgpZ0l0rqoyHQYY1Yg9q0gl9TE0jNaHZMv04c,29
32
32
  mgpsogui/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
33
  mgpsogui/util/CTkToolTip/__init__.py,sha256=G1jxV55hGtGgwyC1sR-uUUdasDdh0XZgcI-aILgGYA0,225
34
34
  mgpsogui/util/CTkToolTip/ctk_tooltip.py,sha256=SZMovpQIGvdpDRbqCKl9SHs92DrFCO2MOYL2ifolvOE,6329
35
- mg_pso_gui-0.0.170.dist-info/METADATA,sha256=X0ZtBmW30INQpwV-TPyiyPpAJd2pIuHURb9KhRSqqBo,9459
36
- mg_pso_gui-0.0.170.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
37
- mg_pso_gui-0.0.170.dist-info/entry_points.txt,sha256=jg82VOFjR1XDGrchs1wJSCqKYE4Ozv12aBcCSp--koA,117
38
- mg_pso_gui-0.0.170.dist-info/top_level.txt,sha256=y7JuS9xJN5YdxUsQ3PSVjN8MzQAnR146bP3ZN3PYWdE,9
39
- mg_pso_gui-0.0.170.dist-info/RECORD,,
35
+ mg_pso_gui-0.0.171.dist-info/METADATA,sha256=SOJyQem8twtqMVvoVfcjEdXP0jsqL1TNlfK3GMyuq5o,9459
36
+ mg_pso_gui-0.0.171.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
37
+ mg_pso_gui-0.0.171.dist-info/entry_points.txt,sha256=jg82VOFjR1XDGrchs1wJSCqKYE4Ozv12aBcCSp--koA,117
38
+ mg_pso_gui-0.0.171.dist-info/top_level.txt,sha256=y7JuS9xJN5YdxUsQ3PSVjN8MzQAnR146bP3ZN3PYWdE,9
39
+ mg_pso_gui-0.0.171.dist-info/RECORD,,
@@ -58,8 +58,8 @@ def create_tab(self, tab):
58
58
  self.graph_button = customtkinter.CTkButton(tab, text="Open Graph in Browser", command=open_graph_in_browser)
59
59
  self.graph_button.grid(row=0, column=2, padx=(20, 20), pady=(20, 20), sticky="nsew")
60
60
 
61
- self.graph_image_obj = Image.open(os.path.join("./images", "up.png"))
62
- self.graph_image = customtkinter.CTkImage(self.graph_image_obj, size=(700, 500))
61
+ self.graph_image_obj = Image.open(os.path.join("./images", "refresh.png"))
62
+ self.graph_image = customtkinter.CTkImage(self.graph_image_obj, size=(128, 128))
63
63
  self.graph_label = customtkinter.CTkLabel(tab, text=None, image=self.graph_image)
64
64
  self.graph_label.grid(row=1, column=0, columnspan=3, padx=(20, 20), pady=(20, 20), sticky="nsew")
65
65
  #window = customtkinter.CTk()