From: Jim Procter Date: Fri, 29 Jul 2016 14:02:29 +0000 (+0100) Subject: JAL-2154 disable visual delay only after completed import X-Git-Tag: Release_2_10_0~125^2 X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=39166053d22c1622aada228d33bea59e0332d0ad;p=jalview.git JAL-2154 disable visual delay only after completed import --- diff --git a/src/jalview/gui/Jalview2XML.java b/src/jalview/gui/Jalview2XML.java index 3e1359d..af820ca 100644 --- a/src/jalview/gui/Jalview2XML.java +++ b/src/jalview/gui/Jalview2XML.java @@ -2442,11 +2442,6 @@ public class Jalview2XML e.printStackTrace(); } - if (Desktop.instance != null) - { - Desktop.instance.stopLoading(); - } - /* * Regather multiple views (with the same sequence set id) to the frame (if * any) that is flagged as the one to gather to, i.e. convert them to tabbed @@ -2472,6 +2467,12 @@ public class Jalview2XML { reportErrors(); } + + if (Desktop.instance != null) + { + Desktop.instance.stopLoading(); + } + return af; }