JAL-2422 remove temporary debug code
authorgmungoc <g.m.carstairs@dundee.ac.uk>
Tue, 4 Feb 2020 17:10:41 +0000 (17:10 +0000)
committergmungoc <g.m.carstairs@dundee.ac.uk>
Tue, 4 Feb 2020 17:10:41 +0000 (17:10 +0000)
src/ext/edu/ucsf/rbvi/strucviz2/ChimeraManager.java

index 78103af..b208763 100644 (file)
@@ -444,13 +444,13 @@ public class ChimeraManager
      */
     if (isChimeraX)
     {
-      // return selectedResidues;
+      return selectedResidues;
     }
 
     // in fact 'listinfo' (undocumented) works in ChimeraX
     String command = (isChimeraX
-            ? "wait 1; view" /*"info selection level residue" */
-            : "list selection level residue");
+            ? "info"
+            : "list") + " selection level residue";
     List<String> chimeraReply = sendChimeraCommand(command, true);
     if (chimeraReply != null)
     {