From 48b3eb259da4749692d8934bbebf98619bd11d62 Mon Sep 17 00:00:00 2001 From: Alexandre Wilhelm Date: Thu, 14 Aug 2014 14:10:37 -0700 Subject: [PATCH] Fixed: delegate popover did show not called with a none animate CPPopover Previously, the delegate popoverDidShow wasn't called with an none animated CPPopover. --- AppKit/CPPopover.j | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AppKit/CPPopover.j b/AppKit/CPPopover.j index a87ded098..1f1edfb87 100644 --- a/AppKit/CPPopover.j +++ b/AppKit/CPPopover.j @@ -260,7 +260,7 @@ Set the behavior of the CPPopover. It can be: [_popoverWindow positionRelativeToRect:positioningRect ofView:positioningView preferredEdge:preferredEdge]; if (![self isShown]) - [self _popoverDidShow]; + [self _popoverWindowDidShow]; } - (unsigned)_styleMaskForBehavior