From d44c894fd88a49422de0e38f5cbb0424f5c61f64 Mon Sep 17 00:00:00 2001 From: LOSSES Don <1384036+Losses@users.noreply.github.com> Date: Wed, 27 Nov 2024 22:44:44 +0800 Subject: [PATCH] chore: Code cleanup --- lib/main.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/main.dart b/lib/main.dart index 65ee80a6b..175ab2bdf 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -259,7 +259,7 @@ String? getWindowsFont(AppTheme theme) { final rg = locale.countryCode?.toLowerCase(); if (lc == 'ja') return "Yu Gothic"; - if (lc == 'ko') return 'Malgun Gothic'; + if (lc == 'ko') return "Malgun Gothic"; if (lc == 'zh' && cc == 'hant') return "Microsoft JhengHei"; if (lc == 'zh' && rg == 'tw') return "Microsoft JhengHei"; if (lc == 'zh' && rg == 'hk') return "Microsoft JhengHei";