mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-27 14:07:03 +00:00
Previously, a panel or a popover didn't close when the user hit the key escape. Now it does. The panel or the popover will close on the keyDown event as in cocoa. Test app in Tests/Manual/CPPanelTest/ and Tests/Manual/CPPopoverTests Fixed #1767
19 lines
298 B
Plaintext
19 lines
298 B
Plaintext
/*
|
|
* AppController.j
|
|
* CPPanelTest
|
|
*
|
|
* Created by You on June 18, 2014.
|
|
* Copyright 2014, Your Company All rights reserved.
|
|
*/
|
|
|
|
@import <Foundation/Foundation.j>
|
|
@import <AppKit/AppKit.j>
|
|
|
|
@import "AppController.j"
|
|
|
|
|
|
function main(args, namedArgs)
|
|
{
|
|
CPApplicationMain(args, namedArgs);
|
|
}
|