diff --git a/src/main/java/edu/ntnu/stud/chaosgame/view/ChaosGameGui.java b/src/main/java/edu/ntnu/stud/chaosgame/view/ChaosGameGui.java
index 10984715373d809ba2c6aebe8dec00734b470d9a..d86c22ea2ebd757fa94eecb5e39a1889ed6a33a6 100644
--- a/src/main/java/edu/ntnu/stud/chaosgame/view/ChaosGameGui.java
+++ b/src/main/java/edu/ntnu/stud/chaosgame/view/ChaosGameGui.java
@@ -188,7 +188,7 @@ public ChaosGameGui(Stage primaryStage) throws IOException {
     this.factory = new ChaosGameDescriptionFactory();
     this.description = factory.getDescriptions().get(0);
 
-    this.chaosCanvas = new ChaosCanvas(100, 100, this.description.getMinCoords(),
+    this.chaosCanvas = new ChaosCanvas(1000, 1000, this.description.getMinCoords(),
         this.description.getMaxCoords());
     game = new ChaosGame(this.description, chaosCanvas);
     //controller.startGame(); // Start the game after it's created