JAL-2422 a fix and a fudge for two failing ChimeraX commands
[jalview.git] / src / jalview / ext / rbvi / chimera / ChimeraXCommands.java
index 314e6db..ad04fc9 100644 (file)
@@ -28,7 +28,6 @@ import java.util.List;
 import jalview.structure.AtomSpecModel;
 import jalview.structure.StructureCommand;
 import jalview.structure.StructureCommandI;
-import jalview.util.ColorUtils;
 
 /**
  * Routines for generating ChimeraX commands for Jalview/ChimeraX binding
@@ -250,7 +249,7 @@ public class ChimeraXCommands extends ChimeraCommands
   public List<StructureCommandI> startNotifications(String uri)
   {
     List<StructureCommandI> cmds = new ArrayList<>();
-    cmds.add(new StructureCommand("info notify start models prefix ModelChanged jalview url " + uri));
+    cmds.add(new StructureCommand("info notify start models jalview prefix ModelChanged url " + uri));
     cmds.add(new StructureCommand("info notify start selection jalview prefix SelectionChanged url " + uri));
     return cmds;
   }