AS3: Losing script tree focus on script selection (disallowed walking tree with keyboard up/down)

This commit is contained in:
Jindra Petřík
2021-01-23 14:53:41 +01:00
parent afbc562811
commit 8f856fefe4
2 changed files with 3 additions and 1 deletions

View File

@@ -8,6 +8,7 @@ All notable changes to this project will be documented in this file.
- AS3: Incorrect handling of strict equals operator in if vs switch resulting in §§pop
- Better goto detection/for continue
- Support for comma operator in switch case statements
- AS3: Losing script tree focus on script selection (disallowed walking tree with keyboard up/down)
### Changed
- AS3 test methods separated to classes

View File

@@ -1393,7 +1393,8 @@ public class ABCPanel extends JPanel implements ItemListener, SearchListener<ABC
detailPanel.setVisible(!val);
decompiledTextArea.ignoreCarret = val;
decompiledTextArea.requestFocusInWindow();
//This prevents walking script tree with up and down:
//decompiledTextArea.requestFocusInWindow();
}
private void editDecompiledButtonActionPerformed(ActionEvent evt) {