From 1af7d3700724834e40ad8636bc9a56cdc3b19b15 Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Sat, 27 Jul 2019 11:52:38 -0400 Subject: [PATCH] New layout icons --- ObjEditor.java | 8 ++++++-- 1 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ObjEditor.java b/ObjEditor.java index c6e6178..cd7eaf9 100644 --- a/ObjEditor.java +++ b/ObjEditor.java @@ -1632,8 +1632,8 @@ /**/ bigThree = new cGridBag(); - bigThree.addComponent(scenePanel); bigThree.addComponent(centralPanel); + bigThree.addComponent(scenePanel); //bigThree.addComponent(XYZPanel); // // SIDE EFFECT!!! @@ -4769,7 +4769,9 @@ readobj.ResetDisplayList(); } catch (Exception e) { - e.printStackTrace(); + if (!e.toString().contains("GZIP")) + e.printStackTrace(); + try { java.io.FileInputStream istream = new java.io.FileInputStream(fullname); @@ -4889,6 +4891,7 @@ } } catch (ClassCastException e) { + e.printStackTrace(); assert (false); Composite c = (Composite) copy; c.children.clear(); @@ -5019,6 +5022,7 @@ //ps.print(buffer.toString()); } catch (IOException e) { + e.printStackTrace(); } } -- Gitblit v1.6.2