mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
Fix clone to all slots behavior
This commit is contained in:
parent
34452c2818
commit
a178418c3d
1 changed files with 2 additions and 1 deletions
|
@ -411,7 +411,8 @@ namespace PKHeX.WinForms.Controls
|
||||||
|
|
||||||
private void ClickClone(object sender, EventArgs e)
|
private void ClickClone(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
if (GetSlotData((PictureBox)sender) is SlotInfoBox)
|
var detail = GetSlotData((PictureBox) sender);
|
||||||
|
if (detail is SlotInfoBox)
|
||||||
RequestCloneData?.Invoke(sender, e);
|
RequestCloneData?.Invoke(sender, e);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue