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:
Kurt 2018-05-05 08:50:15 -07:00
parent c8cdff8abc
commit 16e2fc3344

View file

@ -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);
}
}