diff --git a/PKHeX/MainWindow/Main.cs b/PKHeX/MainWindow/Main.cs index c25c8038d..812a3fab7 100644 --- a/PKHeX/MainWindow/Main.cs +++ b/PKHeX/MainWindow/Main.cs @@ -4299,7 +4299,7 @@ public static void Reset() public static bool? WasDragParticipant(object form, int index) { - if (slotDestinationBoxNumber != index) + if (slotDestinationBoxNumber != index && slotSourceBoxNumber != index) return null; // form was not watching box return slotSource == form || slotDestination == form; // form already updated? }