right ordering for RedundancyPanel constructor
authorjprocter <Jim Procter>
Fri, 27 May 2005 15:09:33 +0000 (15:09 +0000)
committerjprocter <Jim Procter>
Fri, 27 May 2005 15:09:33 +0000 (15:09 +0000)
src/jalview/gui/AlignFrame.java

index 92341df..b0eca3e 100755 (executable)
@@ -995,7 +995,7 @@ public class AlignFrame extends GAlignFrame
 
   public void removeRedundancyMenuItem_actionPerformed(ActionEvent e)
   {
-    RedundancyPanel sp = new RedundancyPanel(this, alignPanel);
+    RedundancyPanel sp = new RedundancyPanel(alignPanel,this);
     JInternalFrame frame = new JInternalFrame();
     frame.setContentPane(sp);
     Desktop.addInternalFrame(frame, "Redundancy threshold selection", 400, 100, false);