Bug in hideAll / showAll behoben
This commit is contained in:
parent
72c44c42e0
commit
2282f164a1
|
@ -32,7 +32,7 @@ public class ShapesLayer extends Layer {
|
|||
public void showAll() {
|
||||
synchronized( shapes ) {
|
||||
for( Shape pShape : shapes ) {
|
||||
pShape.hide();
|
||||
pShape.show();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -40,7 +40,7 @@ public class ShapesLayer extends Layer {
|
|||
public void hideAll() {
|
||||
synchronized( shapes ) {
|
||||
for( Shape pShape : shapes ) {
|
||||
pShape.show();
|
||||
pShape.hide();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue