diff options
| author | Paul Buetow <paul@buetow.org> | 2008-06-02 01:43:11 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2008-06-02 01:43:11 +0000 |
| commit | 16200e39c38ed76ddac954c7e005a22b6233c642 (patch) | |
| tree | f4703e6359da7fbc3d5ca97e7427556777839b39 /sources/simulator/VSSimulator.java | |
| parent | 378c2674fc704b2a6bbf0e6a01b721a7aea7c2e2 (diff) | |
foo
Diffstat (limited to 'sources/simulator/VSSimulator.java')
| -rw-r--r-- | sources/simulator/VSSimulator.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sources/simulator/VSSimulator.java b/sources/simulator/VSSimulator.java index 4323190..b6cdb44 100644 --- a/sources/simulator/VSSimulator.java +++ b/sources/simulator/VSSimulator.java @@ -335,6 +335,7 @@ public class VSSimulator extends JPanel implements VSSerializable { if (SwingUtilities.isRightMouseButton(me)) { ActionListener actionListener = new ActionListener() { public void actionPerformed(ActionEvent ae) { + System.out.println("BAZ"); String command = ae.getActionCommand(); if (command.equals(prefs.getString("lang.remove"))) { removeTaskAtRow(row); @@ -596,6 +597,7 @@ public class VSSimulator extends JPanel implements VSSerializable { prefs.getString("lang.logging.clear")); clearButton.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent ae) { + System.out.println("BAY"); String command = ae.getActionCommand(); if (command.equals( prefs.getString("lang.logging.clear"))) { @@ -818,6 +820,7 @@ public class VSSimulator extends JPanel implements VSSerializable { takeoverButton.addActionListener(new ActionListener() { private boolean isRed; public void actionPerformed(ActionEvent ae) { + System.out.println("BAR"); String textValue = textField.getText(); Long longValue = null; @@ -1247,6 +1250,7 @@ public class VSSimulator extends JPanel implements VSSerializable { serialize.setObject("logging", logging); simulatorCanvas.deserialize(serialize, objectInputStream); + updateFromPrefs(); updateTaskManagerTable(); } } |
