Skip to content

Commit

Permalink
modified: ufade_gui.py
Browse files Browse the repository at this point in the history
  • Loading branch information
prosch88 committed Jul 26, 2024
1 parent 9c8839a commit fba9fae
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions ufade_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -1485,9 +1485,12 @@ def mount_developer(self, change, text):
pass
if int(version.split(".")[0]) < 17:
try:
info = ("Looking for version " + version)
self.after(100)
text.configure(text=" ", anchor="nw", justify="left")
text.update()
self.after(1000)
text.configure(text=info, anchor="nw", justify="left")
info = ("Looking for version " + version)
text.configure(text=info)
self.after(1000)
lockdown = create_using_usbmux()
DeveloperDiskImageMounter(lockdown).mount(image=os.path.join(os.path.dirname(__file__),"ufade_developer", "Developer", version, "DeveloperDiskImage.dmg"), signature=os.path.join(os.path.dirname(__file__), "ufade_developer", "Developer", version, "DeveloperDiskImage.dmg.signature"))
Expand Down

0 comments on commit fba9fae

Please sign in to comment.