From a407d4d7fd8fc8ee573bfe4cb9aaa63271a1ea69 Mon Sep 17 00:00:00 2001 From: amwaterhouse Date: Tue, 9 Aug 2005 16:52:39 +0000 Subject: [PATCH] Try/catch loading default icons --- src/jalview/io/JalviewFileChooser.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/jalview/io/JalviewFileChooser.java b/src/jalview/io/JalviewFileChooser.java index 1f44c99..08b99c2 100755 --- a/src/jalview/io/JalviewFileChooser.java +++ b/src/jalview/io/JalviewFileChooser.java @@ -200,7 +200,10 @@ public class JalviewFileChooser public UI(JFileChooser e) { super(e); - this.installIcons(e); + try{ + this.installIcons(e); + }catch(Exception ex) + { System.out.println(ex+"\nProblem installing icons, FileChooser");} } /************************************************************************** -- 1.7.10.2