Another shortcut adjustment

This commit is contained in:
KillzXGaming 2019-07-14 12:58:42 -04:00
parent a2f01c7748
commit 3312f5ab00
3 changed files with 1 additions and 1 deletions

Binary file not shown.

View file

@ -561,7 +561,7 @@ namespace Switch_Toolbox.Library.Forms
private void treeViewCustom1_KeyPress(object sender, KeyEventArgs e) private void treeViewCustom1_KeyPress(object sender, KeyEventArgs e)
{ {
if (treeViewCustom1.SelectedNode != null && e.KeyData.HasFlag(Keys.ControlKey) && treeViewCustom1.SelectedNode is IContextMenuNode) if (treeViewCustom1.SelectedNode != null && treeViewCustom1.SelectedNode is IContextMenuNode)
{ {
IContextMenuNode node = (IContextMenuNode)treeViewCustom1.SelectedNode; IContextMenuNode node = (IContextMenuNode)treeViewCustom1.SelectedNode;