mirror of
https://github.com/cemu-project/idapython.git
synced 2025-06-13 06:58:32 +02:00
bugfix: Previous implementation set_script_timeout() was causing the script wait dialog box to open and never close upon the invocation of callbacks (add_menu_item callback or other callbacks) that take longer than the timeout value.
This commit is contained in:
@ -2911,7 +2911,7 @@ def AskAddr(defval, prompt):
|
||||
"""
|
||||
Ask the user to enter an address
|
||||
|
||||
@param defval: the default address value. This value
|
||||
@param defval: a string designating the default address value. This value
|
||||
will appear in the dialog box.
|
||||
@param prompt: the prompt to display in the dialog box
|
||||
|
||||
@ -2924,7 +2924,7 @@ def AskLong(defval, prompt):
|
||||
"""
|
||||
Ask the user to enter a number
|
||||
|
||||
@param defval: the default value. This value
|
||||
@param defval: a number designating the default value. This value
|
||||
will appear in the dialog box.
|
||||
@param prompt: the prompt to display in the dialog box
|
||||
|
||||
|
Reference in New Issue
Block a user