mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-30 13:01:28 +00:00
Script search history fixes - reading AS3 results
This commit is contained in:
@@ -170,10 +170,11 @@ public class MainFrameRibbonMenu extends MainFrameMenu {
|
||||
|
||||
int j = 0;
|
||||
for (int i = indices.size() - 1; i >= 0; i--) {
|
||||
String searched = Main.searchResultsStorage.getSearchedValueAt(i);
|
||||
final int fi = indices.get(i);
|
||||
String searched = Main.searchResultsStorage.getSearchedValueAt(fi);
|
||||
RecentSearchesButton historyButton = new RecentSearchesButton(j + " " + searched, null);
|
||||
historyButton.search = searched;
|
||||
final int fi = i;
|
||||
|
||||
historyButton.addActionListener((ActionEvent ae) -> {
|
||||
SearchResultsDialog sr;
|
||||
if (swf.isAS3()) {
|
||||
|
||||
Reference in New Issue
Block a user