You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
JADX is my favorite APK reverse engineering tool but one thing annoys me a lot. Whenever I selects code snippet in search dialog and jumps to the code, search dialog will close. So I have to open search dialog again if I want to continue my searching.
I notice there's a dispose function called in CommonSearchDialog::openSelectedItem
I also wanted to implement something similar but until now I have not managed to do so.
I think the main problem is that just disabling is in my opinion not a good option. The search dialog is a "multi-purpose dialog used several times within Jadx and not always it is the best solution to keep it open.
I had something in mind where there is a checkbox in the search dialog to "keep it open". What do you think of such a solution?
Hi,
JADX is my favorite APK reverse engineering tool but one thing annoys me a lot. Whenever I selects code snippet in search dialog and jumps to the code, search dialog will close. So I have to open search dialog again if I want to continue my searching.
I notice there's a dispose function called in CommonSearchDialog::openSelectedItem
I tries to patch the code like this
Then search dialog will not close any longer:)
The text was updated successfully, but these errors were encountered: