JAL-1355
[jalview.git] / src / jalview / gui / ChimeraViewFrame.java
index 815957f..cf04ae8 100644 (file)
@@ -154,7 +154,7 @@ public class ChimeraViewFrame extends GStructureViewer implements Runnable,
       _alignwith = new Vector<AlignmentPanel>();
     }
 
-    seqColourBy = new ViewSelectionMenu("Colour by ..", this, _colourwith,
+    seqColourBy = new ViewSelectionMenu(MessageManager.getString("label.colour_by"), this, _colourwith,
             new ItemListener()
             {
 
@@ -174,7 +174,7 @@ public class ChimeraViewFrame extends GStructureViewer implements Runnable,
             });
     viewMenu.add(seqColourBy);
     final ItemListener handler;
-    JMenu alpanels = new ViewSelectionMenu("Superpose with ..", this,
+    JMenu alpanels = new ViewSelectionMenu(MessageManager.getString("label.superpose_with"), this,
             _alignwith, handler = new ItemListener()
             {
 
@@ -586,7 +586,7 @@ public class ChimeraViewFrame extends GStructureViewer implements Runnable,
     {
       command = "";
     }
-    jmb.evalStateCommand(command);
+    jmb.evalStateCommand(command, false);
     jmb.setFinishedInit(true);
   }
 
@@ -845,13 +845,13 @@ public class ChimeraViewFrame extends GStructureViewer implements Runnable,
       // do superposition if asked to
       if (alignAddedStructures)
       {
-        javax.swing.SwingUtilities.invokeLater(new Runnable()
+        new Thread(new Runnable()
         {
           public void run()
           {
             alignStructs_withAllAlignPanels();
           }
-        });
+        }).start();
         alignAddedStructures = false;
       }
       addingStructures = false;