FIre OnPointerExit from empty slot keybind

This commit is contained in:
Tyfon
2024-09-29 23:48:53 -07:00
parent 5259d4e60c
commit 406d37e921

View File

@@ -32,6 +32,9 @@ public class EmptySlotMenuTrigger : MonoBehaviour, IPointerClickHandler, IPointe
using EmptySlotContext context = new(slot, parentContext, itemUiContext);
var interactions = itemUiContext.GetItemContextInteractions(context, null);
interactions.ExecuteInteraction(EItemInfoButton.LinkedSearch);
// Call this explicitly since screen transition prevents it from firing normally
OnPointerExit(null);
}
}