equal
deleted
inserted
replaced
406 break; |
406 break; |
407 } |
407 } |
408 } |
408 } |
409 |
409 |
410 // check scancode for BACKQUOTE key, because we want the key left of "1", not anything else (on non-US keyboards) |
410 // check scancode for BACKQUOTE key, because we want the key left of "1", not anything else (on non-US keyboards) |
411 #if defined(WIN32) |
411 #if defined(WIN32) || defined(__OS2__) |
412 if (sym->scancode == 41) key |= WKC_BACKQUOTE; |
412 if (sym->scancode == 41) key |= WKC_BACKQUOTE; |
413 #elif defined(__APPLE__) |
413 #elif defined(__APPLE__) |
414 if (sym->scancode == 10) key |= WKC_BACKQUOTE; |
414 if (sym->scancode == 10) key |= WKC_BACKQUOTE; |
415 #elif defined(__MORPHOS__) |
415 #elif defined(__MORPHOS__) |
416 if (sym->scancode == 0) key |= WKC_BACKQUOTE; // yes, that key is code '0' under MorphOS :) |
416 if (sym->scancode == 0) key |= WKC_BACKQUOTE; // yes, that key is code '0' under MorphOS :) |