Skip to content

Commit 9007e69

Browse files
author
slavara
committed
WIP
1 parent 7d445ec commit 9007e69

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

QuickNavigate/Forms/OpenRecentProjectsForm.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
using System.IO;
55
using System.Linq;
66
using System.Windows.Forms;
7-
using ASCompletion.Context;
87
using JetBrains.Annotations;
98
using PluginCore;
109
using PluginCore.Helpers;

QuickNavigate/Forms/QuickOutlineForm.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,9 +289,9 @@ void OnInputKeyDown(object sender, KeyEventArgs e)
289289
{
290290
if (tree.Nodes.Count == 0) return;
291291
var keyCode = e.KeyCode;
292-
if (keysToFilter.ContainsKey(keyCode))
292+
if (e.Alt && keysToFilter.ContainsKey(keyCode))
293293
{
294-
e.Handled = e.Alt;
294+
e.Handled = true;
295295
return;
296296
}
297297
TreeNode node;

0 commit comments

Comments
 (0)