Skip to content

Commit

Permalink
bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
hirusha-adi committed Apr 18, 2022
1 parent 936335e commit 3fe6437
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,8 @@ def process_info_from_GUI():
if not(isinstance(gui_login_password, str)) and ((len(gui_login_password) == 0)):
login_password = gui_login_password

root.destroy()


font_12_bold = font.Font(size="12", weight="bold")
font_14_bold = font.Font(size="14", weight="bold")
Expand Down Expand Up @@ -263,7 +265,7 @@ def process_info_from_GUI():

b_start_processing = Button(root)
b_start_processing.configure(text="Start")
b_start_processing.configure(command=open_help)
b_start_processing.configure(command=process_info_from_GUI)
b_start_processing.configure(padx=62)
b_start_processing.configure(font=font_14_bold)
b_start_processing.grid(
Expand Down

0 comments on commit 3fe6437

Please sign in to comment.