diff options
author | Camil Staps | 2015-06-05 15:16:22 +0200 |
---|---|---|
committer | Camil Staps | 2015-06-05 15:16:22 +0200 |
commit | 324aa6d4b9dad0f993fd3ff2d766c7a2f4397793 (patch) | |
tree | 542fce08597b01a3b2a9b9f47ad88393a2c8ac17 /Week15 Mandelbrot/src/com/camilstaps/mandelbrot/MandelbrotWindow.java | |
parent | Version with four swingworkers (diff) |
Option for multiple (4) or single swingworker(s)
Diffstat (limited to 'Week15 Mandelbrot/src/com/camilstaps/mandelbrot/MandelbrotWindow.java')
-rw-r--r-- | Week15 Mandelbrot/src/com/camilstaps/mandelbrot/MandelbrotWindow.java | 2 |
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); |