Skip to content

Commit

Permalink
fix gui
Browse files Browse the repository at this point in the history
  • Loading branch information
Flavio0410 committed Dec 21, 2022
1 parent 0f7c310 commit 5f75ac2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion gui/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,13 @@ def select_file():

#Listbox path
listbox = Listbox(window)
listbox.place(x=550.0, y=150.0, width=200.0, height=150.0)
listbox.place(x=550.0, y=130.0, width=200.0, height=150.0)

#Remove button, on click remove a path from the listbox-
remove_button_image = PhotoImage(file=relative_to_assets("button_1.png"))
remove_button = Button(image=remove_button_image, borderwidth=0, highlightthickness=0, command=select_file, relief="flat")
remove_button.place(x=550.0, y=310.0, width=200.0, height=50.0)


#Upload button, on click open task to select file-
upload_button_image = PhotoImage(file=relative_to_assets("button_1.png"))
Expand Down

0 comments on commit 5f75ac2

Please sign in to comment.