mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-09 04:24:36 -05: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
|
|
@ -59,7 +59,7 @@ public void MouseEnter(object sender, EventArgs e)
|
|||
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…
Reference in New Issue
Block a user