From 16e2fc3344366232846165db7e4e821720818b98 Mon Sep 17 00:00:00 2001 From: Kurt Date: Sat, 5 May 2018 08:50:15 -0700 Subject: [PATCH] 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) --- PKHeX.WinForms/Controls/SAV Editor/SlotChangeManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKHeX.WinForms/Controls/SAV Editor/SlotChangeManager.cs b/PKHeX.WinForms/Controls/SAV Editor/SlotChangeManager.cs index eff5bd30c..595faddfe 100644 --- a/PKHeX.WinForms/Controls/SAV Editor/SlotChangeManager.cs +++ b/PKHeX.WinForms/Controls/SAV Editor/SlotChangeManager.cs @@ -59,7 +59,7 @@ public void MouseEnter(object sender, EventArgs e) var view = WinFormsUtil.FindFirstControlOfType>(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); } }