aboutsummaryrefslogtreecommitdiff
path: root/Week15 Mandelbrot/src/com/camilstaps/mandelbrot/MandelbrotWindow.java
diff options
context:
space:
mode:
Diffstat (limited to 'Week15 Mandelbrot/src/com/camilstaps/mandelbrot/MandelbrotWindow.java')
-rw-r--r--Week15 Mandelbrot/src/com/camilstaps/mandelbrot/MandelbrotWindow.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/Week15 Mandelbrot/src/com/camilstaps/mandelbrot/MandelbrotWindow.java b/Week15 Mandelbrot/src/com/camilstaps/mandelbrot/MandelbrotWindow.java
index 9322be9..81a4204 100644
--- a/Week15 Mandelbrot/src/com/camilstaps/mandelbrot/MandelbrotWindow.java
+++ b/Week15 Mandelbrot/src/com/camilstaps/mandelbrot/MandelbrotWindow.java
@@ -45,7 +45,7 @@ public class MandelbrotWindow extends JFrame {
setVisible(true);
Grid grid = new Grid(fm);
- Textfields textfields = new Textfields(fm);
+ Textfields textfields = new Textfields(fm, grid);
add(grid, BorderLayout.CENTER);
add(grid.getProgressView(), BorderLayout.SOUTH);