mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
Repoint old delete/sort shortcuts
Closes #1923 , actual controls are nested 1 deeper.
This commit is contained in:
parent
77276302a5
commit
21cb931123
1 changed files with 2 additions and 2 deletions
|
@ -373,9 +373,9 @@ namespace PKHeX.WinForms.Controls
|
|||
if (!e.Button.HasFlag(MouseButtons.Right))
|
||||
{
|
||||
if (ModifierKeys.HasFlag(Keys.Alt))
|
||||
SortMenu.Items[0].PerformClick(); // Clear
|
||||
((ToolStripMenuItem)SortMenu.Items[0]).DropDownItems[0].PerformClick(); // Clear
|
||||
else if (ModifierKeys.HasFlag(Keys.Control))
|
||||
SortMenu.Items[1].PerformClick(); // Sort
|
||||
((ToolStripMenuItem)SortMenu.Items[1]).DropDownItems[0].PerformClick(); // Sort
|
||||
return;
|
||||
}
|
||||
var pt = Tab_Box.PointToScreen(new Point(0, 0));
|
||||
|
|
Loading…
Reference in a new issue