Revision: 21637
          http://sourceforge.net/p/jmol/code/21637
Author:   hansonr
Date:     2017-06-20 04:06:22 +0000 (Tue, 20 Jun 2017)
Log Message:
-----------
Jmol.___JmolVersion="14.19.1"

new feature: WRITE "SDF" implements atom value V  nnn ... information
 -- requires assigning the data property name "atom_values" in the model's 
molData property
 -- for example:
 
  $ load $2,3-dichlorobutane
  $ molData = {"atom_values":"chirality"}
  $ model properties "molData" molData
  $ write diol.sdf

 -- note that if the model already has a molData property, then use the 
following to append to it:
 
  $ molData = (_M.molData ? _M.molData : {})
  $ molData.atom_values = "chirality"
  $ model properties "molData" molData
   
   
   
new feature: x = load("filename","JSON")
 -- loads JSON data into variable
 
bug fix: SET ANTIALIASDISPLAY requires click [via resizeImage()]
bug fix: CIP gives wrong alkene root distance for cyclopropene
bug fix: WRITE of structure file does not report number of atoms and warn if 
selected is different from this molecule
bug fix: WRITE MOL using format 10f.5 instead of 10f.4 for x, y, z coordinates
bug fix: MOL/SDF files should truncate lines at 80 characters.

Modified Paths:
--------------
    trunk/Jmol/src/org/jmol/viewer/Jmol.properties
    trunk/Jmol/src/org/jmol/viewer/Viewer.java

Modified: trunk/Jmol/src/org/jmol/viewer/Jmol.properties
===================================================================
--- trunk/Jmol/src/org/jmol/viewer/Jmol.properties      2017-06-17 12:04:50 UTC 
(rev 21636)
+++ trunk/Jmol/src/org/jmol/viewer/Jmol.properties      2017-06-20 04:06:22 UTC 
(rev 21637)
@@ -77,6 +77,8 @@
    
 new feature: x = load("filename","JSON")
  -- loads JSON data into variable
+ 
+bug fix: SET ANTIALIASDISPLAY requires click [via resizeImage()]
 bug fix: CIP gives wrong alkene root distance for cyclopropene
 bug fix: WRITE of structure file does not report number of atoms and warn if 
selected is different from this molecule
 bug fix: WRITE MOL using format 10f.5 instead of 10f.4 for x, y, z coordinates

Modified: trunk/Jmol/src/org/jmol/viewer/Viewer.java
===================================================================
--- trunk/Jmol/src/org/jmol/viewer/Viewer.java  2017-06-17 12:04:50 UTC (rev 
21636)
+++ trunk/Jmol/src/org/jmol/viewer/Viewer.java  2017-06-20 04:06:22 UTC (rev 
21637)
@@ -7057,8 +7057,10 @@
       g.antialiasImages = TF;
       return;
     }
-    if (isChanged)
+    if (isChanged) {
+      resizeImage(0, 0, false, false, true); // for antialiasdisplay
       refresh(3, "Viewer:setAntialias()");
+    }
 //    resizeImage(0, 0, false, false, true);
   }
 

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Jmol-commits mailing list
Jmol-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jmol-commits

Reply via email to