Fix typo on CanvasView pausing.

This commit is contained in:
Sergio Martínez Portela 2020-06-04 17:26:07 +02:00
parent 7cea4a293c
commit b0fc1df080

View File

@ -578,7 +578,7 @@ public class CanvasView extends View implements PartGrid {
public void pause() {
for (Part part : parts) {
part.resume();
part.pause();
}
}
}