Skip to content

Commit

Permalink
Update version in scenario GUI
Browse files Browse the repository at this point in the history
Update version to the next release in advance.
  • Loading branch information
bhargavasana authored Oct 1, 2024
1 parent a4f5e92 commit d7b5812
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/python/pythonGUI/createStudyAndScenario.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def __init__(self, root, emme_version = "4.3.7", year = "2022", geo = "1", year_
self.buttonVar= tkinter.IntVar(root)
self.yButton=tkinter.Radiobutton(body, text="Yes", variable=self.buttonVar, value=1, command=self.initStudy)
self.nButton=tkinter.Radiobutton(body, text="No", variable=self.buttonVar, value=0,command=self.initStudy)
tkinter.Label(body, text=u"Release Version 15.1.0\n"+divider, font=("Helvetica", 11, 'bold'), width=50, fg='royal blue').grid(row=current_row,columnspan=5)
tkinter.Label(body, text=u"Release Version 15.2.0\n"+divider, font=("Helvetica", 11, 'bold'), width=50, fg='royal blue').grid(row=current_row,columnspan=5)
current_row += 1
tkinter.Label(body, text=u"Create an ABM Work Space", font=("Helvetica", 10, 'bold')).grid(row=current_row,columnspan=n_columns)
current_row += 1
Expand Down Expand Up @@ -404,4 +404,4 @@ def executeBatch(self, type):
w=tkinter.Label(root, image=logo, width=200)
w.pack(side='top', fill='both', expand='yes')
CreateScenarioGUI(root).pack(fill=constants.X, expand=1)
root.mainloop()
root.mainloop()

0 comments on commit d7b5812

Please sign in to comment.