From: James Procter Date: Tue, 12 Dec 2023 17:17:17 +0000 (+0000) Subject: JAL-4217 don’t try and export an image when Jmol is also trying to repaint X-Git-Tag: Release_2_11_3_3~8^2~1^2^2~2 X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;ds=sidebyside;h=7adf677c44c311f7b45b552f8e1022ad8ae97ac4;p=jalview.git JAL-4217 don’t try and export an image when Jmol is also trying to repaint --- diff --git a/src/jalview/gui/AppJmol.java b/src/jalview/gui/AppJmol.java index 0aa4878..4d0de1b 100644 --- a/src/jalview/gui/AppJmol.java +++ b/src/jalview/gui/AppJmol.java @@ -421,6 +421,14 @@ public class AppJmol extends StructureViewerBase } + public boolean isRepainting() + { + if (renderPanel!=null && renderPanel.isVisible()) + { + return renderPanel.repainting; + } + return false; + } /** * Outputs the Jmol viewer image as an image file, after prompting the user to * choose a file and (for EPS) choice of Text or Lineart character rendering @@ -431,6 +439,13 @@ public class AppJmol extends StructureViewerBase @Override public void makePDBImage(ImageMaker.TYPE type) { + while (!isRepainting()) + { + try { + Thread.sleep(2); + } catch (Exception q) + {} + } try { makePDBImage(null, type, null, @@ -627,10 +642,17 @@ public class AppJmol extends StructureViewerBase } else { - jmb.jmolViewer.renderScreenImage(g, currentSize.width, - currentSize.height); + repainting=true; + synchronized (jmb) + { + jmb.jmolViewer.renderScreenImage(g, currentSize.width, + currentSize.height); + + } + repainting=false; } } + volatile boolean repainting=false; } @Override