Skip to content

Commit b9d643f

Browse files
committed
fix: macOS romanScript에서 한국어 제외
1 parent 1ca5de5 commit b9d643f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

indra/newview/llappdelegate-objc.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ - (bool) romanScript
203203
@autoreleasepool {
204204
// How to add support for new languages with the input window:
205205
// Simply append this array with the language code (ja for japanese, ko for korean, zh for chinese, etc.)
206-
NSArray* nonRomanScript = @[@"ja", @"ko", @"zh-Hant", @"zh-Hans"];
206+
NSArray* nonRomanScript = @[@"ja", @"zh-Hant", @"zh-Hans"];
207207
if ([nonRomanScript containsObject:currentInputLanguage])
208208
{
209209
return false;

0 commit comments

Comments
 (0)