X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/7ef17aec99c92c9d0d3f9fc29e257e0035de1aa9..7349b6046bba42f3972b76f13fcb82d1b1be3c4d:/KeyCombo.m diff --git a/KeyCombo.m b/KeyCombo.m index 9017619..edebd68 100755 --- a/KeyCombo.m +++ b/KeyCombo.m @@ -99,7 +99,7 @@ - (NSString *)userDisplayRep { if ( ! [self isValid] ) { - return @"None"; + return @""; } else { return [NSString stringWithFormat: @"%@%@", [KeyCombo _stringForModifiers: mModifiers], @@ -112,7 +112,7 @@ static long modToChar[4][2] = { { cmdKey, 0x23180000 }, { optionKey, 0x23250000 }, - { controlKey, 0x005E0000 }, + { controlKey, 0x23030000 }, { shiftKey, 0x21e70000 } };