mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 05:48:44 +00:00
Tack on shift to the showdownset view
hold ctrl+shift for the set preview; I forgot that ctrl was already used for quick loading to tabs (makes it impossible with just ctrl)
This commit is contained in:
parent
c8cdff8abc
commit
16e2fc3344
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ namespace PKHeX.WinForms.Controls
|
|||
var view = WinFormsUtil.FindFirstControlOfType<ISlotViewer<PictureBox>>(pb);
|
||||
var data = view.GetSlotData(pb);
|
||||
var pk = SAV.GetStoredSlot(data.Offset);
|
||||
if (pk.Species > 0 && Control.ModifierKeys.HasFlag(Keys.Control))
|
||||
if (pk.Species > 0 && Control.ModifierKeys.HasFlag(Keys.Control) && Control.ModifierKeys.HasFlag(Keys.Shift))
|
||||
ShowSet.SetToolTip(pb, pk.ShowdownText);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue