removing indirect references to Platform.isAMac()
authorhansonr <hansonr@STO24954W.ad.stolaf.edu>
Mon, 21 Jan 2019 16:46:54 +0000 (10:46 -0600)
committerhansonr <hansonr@STO24954W.ad.stolaf.edu>
Mon, 21 Jan 2019 16:46:54 +0000 (10:46 -0600)
src/jalview/appletgui/AlignViewport.java
src/jalview/appletgui/SeqPanel.java

index 262948d..9004457 100644 (file)
@@ -55,8 +55,6 @@ public class AlignViewport extends AlignmentViewport
 
   public jalview.bin.JalviewLite applet;
 
-  boolean MAC = false;
-
   private AnnotationColumnChooser annotationColumnSelectionState;
 
   public AlignViewport(AlignmentI al, JalviewLite applet)
@@ -120,8 +118,6 @@ public class AlignViewport extends AlignmentViewport
     }
     setFont(font, true);
 
-    MAC = new jalview.util.Platform().isAMac();
-
     if (applet != null)
     {
       setShowJVSuffix(
index e07dae6..291ab02 100644 (file)
@@ -42,6 +42,7 @@ import jalview.structure.VamsasSource;
 import jalview.util.Comparison;
 import jalview.util.MappingUtils;
 import jalview.util.MessageManager;
+import jalview.util.Platform;
 import jalview.viewmodel.AlignmentViewport;
 
 import java.awt.BorderLayout;
@@ -501,7 +502,7 @@ public class SeqPanel extends Panel implements MouseMotionListener,
     // As the Button2_mask always seems to be true
     if ((evt.getModifiers()
             & InputEvent.BUTTON2_MASK) == InputEvent.BUTTON2_MASK
-            && !av.MAC)
+            && !Platform.isAMac())
     {
       mouseWheelPressed = true;
       return;