Don't activate the IDA window when jumping (#628)

Fix #627
pull/630/head^2
NyaMisty 7 years ago committed by Disconnect3d
parent a46052c4ef
commit cacb55d474

@ -227,7 +227,8 @@ def here():
@withIDA
@takes_address
def Jump(addr):
return _ida.Jump(addr)
# uses C++ api instead of idc one to avoid activating the IDA window
return _ida.jumpto(addr, -1, 0)
@withIDA

Loading…
Cancel
Save