diff options
| author | Pietro Gagliardi <[email protected]> | 2014-06-07 18:17:29 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-06-07 18:17:29 -0400 |
| commit | 9f2669d583fcd4ed30dbd7313139762d22102036 (patch) | |
| tree | 33786f90321ed02e80a48e6231b30ede79de7232 /area_darwin.m | |
| parent | fe4d9b992d9b28c9734d06fb41fb093014c7051d (diff) | |
Fixed Command key up on Mac OS X. This fix also fixes Help key down, so remove the workaround there.
Diffstat (limited to 'area_darwin.m')
| -rw-r--r-- | area_darwin.m | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/area_darwin.m b/area_darwin.m index 6522ecc..5519f8b 100644 --- a/area_darwin.m +++ b/area_darwin.m @@ -101,6 +101,13 @@ event(flagsChanged, areaView_flagsChanged) @end +Class areaClass; + +void initAreaClass(void) +{ + areaClass = [areaView class]; +} + id makeArea(void) { return [[areaView alloc] |
