tab fixes and hack for text with a z coord

This commit is contained in:
benfry
2005-04-19 02:34:51 +00:00
parent 6f6368ee06
commit 1dd37803dc
6 changed files with 65 additions and 144 deletions

View File

@@ -325,7 +325,8 @@ public class EditorHeader extends JComponent {
JMenu unhide = new JMenu("Unhide");
ActionListener unhideListener = new ActionListener() {
public void actionPerformed(ActionEvent e) {
editor.sketch.unhideCode((String) (e.getActionCommand()));
String which = (String) e.getActionCommand();
editor.sketch.unhideCode(which);
rebuildMenu();
}
};