Skip to content

Commit

Permalink
Update isocorgui.py
Browse files Browse the repository at this point in the history
for issue #25 : remove empty string ('') for the tk.StringVar() call that make iscocor startup failed with newer version of the *tk* library.
  • Loading branch information
gmat committed Nov 14, 2022
1 parent 10662b0 commit 4a4d46d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion isocor/ui/isocorgui.py
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ def createWidgets(self):
self.purityManager.config(scrollregion=self.purityManager.bbox("all"))

tracer_list = list(self.cleanDfIsotopes['subscriptName'])
self.isotopictracerEntered = tk.StringVar('')
self.isotopictracerEntered = tk.StringVar()
self.isotopictracerlbl = ttk.Label(
optionFrame, text="Isotopic tracer")
self.isotopictracerCBB = ttk.Combobox(
Expand Down

0 comments on commit 4a4d46d

Please sign in to comment.