From a7bb3ab6c25586af2bae390c7dc07ffeffa005a6 Mon Sep 17 00:00:00 2001 From: Maxim Shafirov Date: Mon, 16 Nov 2009 16:06:37 +0300 Subject: [PATCH] IDEADEV-41315 --- .../com/intellij/ide/projectView/impl/ProjectViewImpl.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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);