mg-pso-gui 0.1.175__py3-none-any.whl → 0.1.177__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.
- {mg_pso_gui-0.1.175.dist-info → mg_pso_gui-0.1.177.dist-info}/METADATA +1 -1
- {mg_pso_gui-0.1.175.dist-info → mg_pso_gui-0.1.177.dist-info}/RECORD +7 -7
- mgpsogui/gui/VisualizeTab/MatrixEditor.py +2 -2
- mgpsogui/gui/VisualizeTab/SideBar.py +1 -1
- {mg_pso_gui-0.1.175.dist-info → mg_pso_gui-0.1.177.dist-info}/WHEEL +0 -0
- {mg_pso_gui-0.1.175.dist-info → mg_pso_gui-0.1.177.dist-info}/entry_points.txt +0 -0
- {mg_pso_gui-0.1.175.dist-info → mg_pso_gui-0.1.177.dist-info}/top_level.txt +0 -0
@@ -18,8 +18,8 @@ mgpsogui/gui/SetupTab/SetupTab.py,sha256=8f_xqmMaD8grmSKFFUHm8zIGEDrSUzU_sNW6CdR
|
|
18
18
|
mgpsogui/gui/SetupTab/StaticParameterView.py,sha256=iEG-UpBBlAJabZo3MG768oLqOROjUPc23tKOSd47IUc,2739
|
19
19
|
mgpsogui/gui/SetupTab/StepView.py,sha256=_gdfiYr_GqqbQfSYLvdllIYCHdGsy1339cALfYLDAEQ,5909
|
20
20
|
mgpsogui/gui/SetupTab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
21
|
-
mgpsogui/gui/VisualizeTab/MatrixEditor.py,sha256
|
22
|
-
mgpsogui/gui/VisualizeTab/SideBar.py,sha256=
|
21
|
+
mgpsogui/gui/VisualizeTab/MatrixEditor.py,sha256=-nwVw4FizlbVZdnM7r8-bexowF_qUtoeQ0Mu0mZijFQ,2851
|
22
|
+
mgpsogui/gui/VisualizeTab/SideBar.py,sha256=342SridpIqL6LBRE2rDAoUQqbMYCBCiSL3xNo3iPzz8,21936
|
23
23
|
mgpsogui/gui/VisualizeTab/VisualizeTab.py,sha256=_SiRDUvYJ7VUmMZ_VzylWP2tFygbLzWeUCGW3TU3yZM,3466
|
24
24
|
mgpsogui/gui/VisualizeTab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
25
25
|
mgpsogui/gui/images/IGOW 4 Logo.png,sha256=JixNXz5gOEj898VF-_PHthAlGU-6W-y9ucb4EVNPtjs,433752
|
@@ -59,8 +59,8 @@ mgpsogui/util/recosu/utils/trace_writer.py,sha256=V9BJlOjCbNYGoXGEk3CF5wjifBxvar
|
|
59
59
|
mgpsogui/util/recosu/utils/utils.py,sha256=QB8vftq3142ekG0ORjz0ZBHU5YknXbR0oTsrxrPAsF0,3951
|
60
60
|
mgpsogui/util/recosu/utils/plot/__init__.py,sha256=h1KjM7_tNDv351pcwt8A6Ibb1jhwWyx5Gbu-zj-sI3Q,71
|
61
61
|
mgpsogui/util/recosu/utils/plot/cost_steps.py,sha256=1Ce11AJyweWkmvjXPxEygzS-h8yVLmQEDLS53yjPLqQ,3779
|
62
|
-
mg_pso_gui-0.1.
|
63
|
-
mg_pso_gui-0.1.
|
64
|
-
mg_pso_gui-0.1.
|
65
|
-
mg_pso_gui-0.1.
|
66
|
-
mg_pso_gui-0.1.
|
62
|
+
mg_pso_gui-0.1.177.dist-info/METADATA,sha256=Ygq9adtt6sNZ4gSB5k175DvZAxLnqE6dBtQ1caLl4Mc,9456
|
63
|
+
mg_pso_gui-0.1.177.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
64
|
+
mg_pso_gui-0.1.177.dist-info/entry_points.txt,sha256=jg82VOFjR1XDGrchs1wJSCqKYE4Ozv12aBcCSp--koA,117
|
65
|
+
mg_pso_gui-0.1.177.dist-info/top_level.txt,sha256=y7JuS9xJN5YdxUsQ3PSVjN8MzQAnR146bP3ZN3PYWdE,9
|
66
|
+
mg_pso_gui-0.1.177.dist-info/RECORD,,
|
@@ -47,7 +47,7 @@ class MatrixEditor(CTkScrollableFrame):
|
|
47
47
|
CTkLabel(self.containerFrame, text=self.key_values[index]["name"].get()).grid(row=row, column=0, padx=5, pady=5, sticky="")
|
48
48
|
|
49
49
|
if self.edit_mode:
|
50
|
-
return_func = lambda index=index: (self.clear(), self.option_manager.remove_figure_parameter(index), self.home_page.update_graph(), self.render())
|
50
|
+
return_func = lambda index=index: (self.clear(), self.option_manager.remove_figure_parameter(index), self.home_page.update_graph(0), self.render())
|
51
51
|
CTkButton(self.containerFrame, text="Remove", command=return_func).grid(row=row, column=1, padx=(5, 5), pady=(5, 5), sticky="ew")
|
52
52
|
else:
|
53
53
|
bb = CTkOptionMenu(self.containerFrame, values=self.columns, variable=self.key_values[index]["value"], command=self.home_page.update_graph)
|
@@ -60,5 +60,5 @@ class MatrixEditor(CTkScrollableFrame):
|
|
60
60
|
else:
|
61
61
|
CTkButton(self.containerFrame, text="Edit", command=self.toggle_edit_mode).grid(row=row, column=0, padx=(5, 5), pady=(5, 5), sticky="ew")
|
62
62
|
|
63
|
-
add_key_func = lambda: (self.clear(), self.option_manager.add_figure_param("Fig " + str(len(self.key_values)) , self.columns[2]), self.home_page.update_graph(), self.render())
|
63
|
+
add_key_func = lambda: (self.clear(), self.option_manager.add_figure_param("Fig " + str(len(self.key_values)) , self.columns[2]), self.home_page.update_graph(0), self.render())
|
64
64
|
CTkButton(self.containerFrame, text="Add Figure", command=add_key_func).grid(row=row, column=1, padx=(5, 5), pady=(5, 5), sticky="ew")
|
@@ -327,7 +327,7 @@ class SideBar(CTkScrollableFrame):
|
|
327
327
|
self.home_page.csv_x_selector.set(columns[1])
|
328
328
|
|
329
329
|
self.matrix_editor = me.MatrixEditor(self.containerFrame, option_manager=self.option_manager, home_page=self.home_page, columns=columns)
|
330
|
-
self.matrix_editor.grid(row=6, column=0, padx=(10, 10), pady=(10, 0), sticky="nsew")
|
330
|
+
self.matrix_editor.grid(row=6, rowspan=3, column=0, padx=(10, 10), pady=(10, 0), sticky="nsew")
|
331
331
|
self.matrix_editor.grid_columnconfigure(0, weight=1)
|
332
332
|
self.matrix_editor.grid_rowconfigure(0, weight=1)
|
333
333
|
|
File without changes
|
File without changes
|
File without changes
|