Revision: 21667 http://sourceforge.net/p/jmol/code/21667 Author: hansonr Date: 2017-07-20 14:06:47 +0000 (Thu, 20 Jul 2017) Log Message: ----------- Jmol.___JmolVersion="14.20.3" // 2017.07.20
bug fix: ROTATE should not stop spin if it does not initiate a spin bug fix: CIPChirality tests for CIP1966#31,#32 douple spirans and C3 compounds bug fix: CIPChirality for Rule 2 using atomic masses and not for duplicate atoms bug fix: MOL file reading where isotope is indicated in atom line and V item bug fix: MOL reader fails for H1, D, T isotopes indicated as symbols along with isotope difference Modified Paths: -------------- trunk/Jmol/src/org/jmol/viewer/Jmol.properties trunk/Jmol/src/org/jmol/viewer/TransformManager.java Modified: trunk/Jmol/src/org/jmol/viewer/Jmol.properties =================================================================== --- trunk/Jmol/src/org/jmol/viewer/Jmol.properties 2017-07-20 13:40:04 UTC (rev 21666) +++ trunk/Jmol/src/org/jmol/viewer/Jmol.properties 2017-07-20 14:06:47 UTC (rev 21667) @@ -58,6 +58,7 @@ Jmol.___JmolVersion="14.20.3" // 2017.07.20 +bug fix: ROTATE should not stop spin if it does not initiate a spin bug fix: CIPChirality tests for CIP1966#31,#32 douple spirans and C3 compounds bug fix: CIPChirality for Rule 2 using atomic masses and not for duplicate atoms bug fix: MOL file reading where isotope is indicated in atom line and V item Modified: trunk/Jmol/src/org/jmol/viewer/TransformManager.java =================================================================== --- trunk/Jmol/src/org/jmol/viewer/TransformManager.java 2017-07-20 13:40:04 UTC (rev 21666) +++ trunk/Jmol/src/org/jmol/viewer/TransformManager.java 2017-07-20 14:06:47 UTC (rev 21667) @@ -376,7 +376,8 @@ if (rotCenter != null) moveRotationCenter(rotCenter, true); - setSpinOff(); + if (isSpin) + setSpinOff(); setNavOn(false); if (vwr.headless) { @@ -448,7 +449,8 @@ // *THE* Viewer INTERNAL frame rotation entry point - setSpinOff(); + if (isSpin) + setSpinOff(); setNavOn(false); if (dihedralList == null 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