mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 13:07:02 +00:00
Previously when hitting escape on a CPPanel, the key chain event was broken. Now when the user hit escape, cappuccino do the following process - Check if the firstResponder or the chain of the nextResponder implement cancelOperation: - If not, performKeyEquivalent on the firstResponder and so on - If not, call the method cancel: on the firstResponder and the chain (not in the case of the CPPopover) Previously, a complete: method was called if the user hit escape on a void window. This is not a feature of Cocoa, @apajarita or @aljunberg can you confirm that ? This commit is related to the commit #2139