AS3 - fixed not refreshing class list after rename identifiers

This commit is contained in:
Jindra Petk
2013-05-02 19:26:17 +02:00
parent 2b209d9ac8
commit 1db47a8c55

View File

@@ -1531,6 +1531,7 @@ public class MainFrame extends JFrame implements ActionListener, TreeSelectionLi
new SwingWorker() {
@Override
protected Object doInBackground() throws Exception {
try{
int cnt = 0;
if (abcPanel != null) {
@@ -1548,6 +1549,9 @@ public class MainFrame extends JFrame implements ActionListener, TreeSelectionLi
}
doFilter();
reload(true);
}catch(Exception ex){
Logger.getLogger(MainFrame.class.getName()).log(Level.SEVERE, "message", ex);
}
return true;
}
}.execute();