mirror of
https://github.com/DarkMatterCore/nxdumptool.git
synced 2024-11-10 04:31:44 +00:00
Remove exit messagebox.
This commit is contained in:
parent
b0607e9c6e
commit
2103c08582
1 changed files with 2 additions and 3 deletions
|
@ -862,8 +862,7 @@ def uiUpdateDirectoryField(dir):
|
|||
g_tkDirText.configure(state='disabled')
|
||||
|
||||
def uiHandleExitProtocol():
|
||||
if messagebox.askokcancel('Message', 'Are you sure you want to exit?', parent=g_tkRoot):
|
||||
g_tkRoot.destroy()
|
||||
g_tkRoot.destroy()
|
||||
|
||||
def uiHandleExitProtocolStub():
|
||||
pass
|
||||
|
@ -928,7 +927,7 @@ def main():
|
|||
except:
|
||||
traceback.print_exc()
|
||||
g_tkRoot.withdraw()
|
||||
messagebox.showerror('Error', 'Unable to decode embedded application icon!')
|
||||
messagebox.showerror('Error', 'Unable to decode embedded application icon!', parent=g_tkRoot)
|
||||
g_tkRoot.destroy()
|
||||
return
|
||||
|
||||
|
|
Loading…
Reference in a new issue