diff --git a/intern/ghost/intern/GHOST_SystemWin32.cc b/intern/ghost/intern/GHOST_SystemWin32.cc index 0380c4c511b..737d32bc233 100644 --- a/intern/ghost/intern/GHOST_SystemWin32.cc +++ b/intern/ghost/intern/GHOST_SystemWin32.cc @@ -640,6 +640,10 @@ GHOST_TKey GHOST_SystemWin32::processSpecialKey(short vKey, short /*scanCode*/) case u'²': key = GHOST_kKeyAccentGrave; break; + case u'i': + /* `i` key on Turkish kbd. */ + key = GHOST_kKeyI; + break; default: if (vKey == VK_OEM_7) { key = GHOST_kKeyQuote;