mirror of
https://github.com/HACKERALERT/Picocrypt.git
synced 2024-12-28 18:34:21 +00:00
Update Picocrypt.py
This commit is contained in:
parent
4647bf47f0
commit
e1a113e7b0
1 changed files with 6 additions and 0 deletions
|
@ -1122,9 +1122,15 @@ if __name__=="__main__":
|
|||
# Create Reed-Solomon header codec
|
||||
tmp = Thread(target=createRsc,daemon=True)
|
||||
tmp.start()
|
||||
|
||||
# Prepare application
|
||||
tmp = Thread(target=prepare,daemon=True)
|
||||
tmp.start()
|
||||
|
||||
# Context menu selected file
|
||||
if len(sys.argv)==2:
|
||||
inputSelected("{"+sys.argv[1]+"}")
|
||||
|
||||
# Start tkinter
|
||||
tk.protocol("WM_DELETE_WINDOW",onClose)
|
||||
tk.mainloop()
|
||||
|
|
Loading…
Reference in a new issue