|
@@ -98,10 +98,11 @@ public class Frame extends JFrame implements ListSelectionListener, ChangeListen
|
98
|
98
|
private void toggleLegs(){
|
99
|
99
|
ledView.toggleLegs();
|
100
|
100
|
if(showLegs) {
|
101
|
|
- toggleLegsButton.setText("Beine aus");
|
|
101
|
+ toggleLegsButton.setText("Show legs");
|
102
|
102
|
} else {
|
103
|
|
- toggleLegsButton.setText("Beine ein");
|
|
103
|
+ toggleLegsButton.setText("Hide legs");
|
104
|
104
|
}
|
|
105
|
+ showLegs = !showLegs;
|
105
|
106
|
}
|
106
|
107
|
|
107
|
108
|
private int saveExitDialog() {
|
|
@@ -368,7 +369,7 @@ public class Frame extends JFrame implements ListSelectionListener, ChangeListen
|
368
|
369
|
}
|
369
|
370
|
|
370
|
371
|
toggleLegsButton.setBounds(299, 312, 102, 34);
|
371
|
|
- toggleLegsButton.setText("Beine aus");
|
|
372
|
+ toggleLegsButton.setText("Hide legs");
|
372
|
373
|
cp.add(toggleLegsButton);
|
373
|
374
|
toggleLegsButton.addActionListener(new ActionListener(){
|
374
|
375
|
public void actionPerformed(ActionEvent evt){
|