From 3909dee0a7ac2e352dbb0a1892bc44fa85b35d1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubo=C5=A1=20Je=C5=99=C3=A1bek?= Date: Tue, 29 Mar 2016 13:55:09 +0200 Subject: [PATCH] Update polargraphcontroller.pde sorry I was distracted --- polargraphcontroller.pde | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/polargraphcontroller.pde b/polargraphcontroller.pde index e8122d2..a4947da 100644 --- a/polargraphcontroller.pde +++ b/polargraphcontroller.pde @@ -1063,7 +1063,7 @@ void loadImageWithFileChooser() { public void run() { JFileChooser fc = new JFileChooser(); - if (lastImageDir != null) fc.setCurrentDirectory(LastImageDir); + if (lastImageDir != null) fc.setCurrentDirectory(lastImageDir); fc.setFileFilter(new ImageFileFilter()); fc.setDialogTitle("Choose an image file..."); @@ -1112,7 +1112,7 @@ void loadVectorWithFileChooser() public void run() { JFileChooser fc = new JFileChooser(); - if (lastImageDir != null) fc.setCurrentDirectory(LastImageDir); + if (lastImageDir != null) fc.setCurrentDirectory(lastImageDir); fc.setFileFilter(new VectorFileFilter());