Skip to content

Commit

Permalink
최초 실행 시 초반 인스턴스 오류 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
icaros7 committed Dec 12, 2018
1 parent cd02342 commit c6695ee
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
Binary file modified server/Ets2Telemetry.exe
Binary file not shown.
Binary file modified server/Ets2Telemetry.pdb
Binary file not shown.
9 changes: 8 additions & 1 deletion source/Funbit.Ets.Telemetry.Server/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,14 @@ void Start()
void MainForm_Load(object sender, EventArgs e)
{
// Check Last Settings
Thread.CurrentThread.CurrentUICulture = new CultureInfo(Settings.Instance.LastLang);
if (Settings.Instance.LastLang == null)
{
Thread.CurrentThread.CurrentUICulture = new CultureInfo("ko");
}
else
{
Thread.CurrentThread.CurrentUICulture = new CultureInfo(Settings.Instance.LastLang);
}
// Apply Locale
FormInitialize();

Expand Down

0 comments on commit c6695ee

Please sign in to comment.