diff --git a/platform/lang-impl/src/com/intellij/ide/projectView/impl/ProjectViewImpl.java b/platform/lang-impl/src/com/intellij/ide/projectView/impl/ProjectViewImpl.java index ee0a03cb463e..18f27794c287 100644 --- a/platform/lang-impl/src/com/intellij/ide/projectView/impl/ProjectViewImpl.java +++ b/platform/lang-impl/src/com/intellij/ide/projectView/impl/ProjectViewImpl.java @@ -265,7 +265,9 @@ public final class ProjectViewImpl extends ProjectView implements PersistentStat myActionGroupPanel = new JPanel(new BorderLayout()); myLabel = new JLabel("View as:"); - myLabel.setDisplayedMnemonic('a'); + if (!SystemInfo.isMac) { // See IDEADEV-41315 + myLabel.setDisplayedMnemonic('a'); + } myCombo = new ComboBox(); myCombo.setBorder(BorderFactory.createEmptyBorder(0, 4, 0, 0)); myLabel.setLabelFor(myCombo);