mirror of
https://github.com/cemu-project/idapython.git
synced 2024-11-28 03:54:18 +01:00
Applied patch (issue47) by humeafo
This commit is contained in:
parent
3e0343daf5
commit
0acf7aa44a
@ -2120,15 +2120,15 @@ class Choose2:
|
|||||||
self.flags &= ~Choose2.CH_MODAL
|
self.flags &= ~Choose2.CH_MODAL
|
||||||
return _idaapi.choose2_show(self)
|
return _idaapi.choose2_show(self)
|
||||||
|
|
||||||
def Activate():
|
def Activate(self):
|
||||||
"""Activates a visible chooser"""
|
"""Activates a visible chooser"""
|
||||||
return _idaapi.choose2_activate(self)
|
return _idaapi.choose2_activate(self)
|
||||||
|
|
||||||
def Refresh():
|
def Refresh(self):
|
||||||
"""Causes the refresh callback to trigger"""
|
"""Causes the refresh callback to trigger"""
|
||||||
return _idaapi.choose2_refresh(self)
|
return _idaapi.choose2_refresh(self)
|
||||||
|
|
||||||
def Close():
|
def Close(self):
|
||||||
"""Closes the chooser"""
|
"""Closes the chooser"""
|
||||||
return _idaapi.choose2_close(self)
|
return _idaapi.choose2_close(self)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user