diff --git a/GUI.cpp b/GUI.cpp index 1ff946f..838d20e 100644 --- a/GUI.cpp +++ b/GUI.cpp @@ -1974,9 +1974,6 @@ BOOL XgImportLooks(HWND hwnd, LPCWSTR pszFileName) GetPrivateProfileStringW(L"Looks", L"SmallFont", L"", szText, _countof(szText), pszFileName); StringCchCopyW(xg_szSmallFont, _countof(xg_szSmallFont), szText); - GetPrivateProfileStringW(L"Looks", L"UIFont", L"", szText, _countof(szText), pszFileName); - StringCchCopyW(xg_szUIFont, _countof(xg_szUIFont), szText); - // スケルトンビューか? if (XgIsUserJapanese()) GetPrivateProfileStringW(L"Looks", L"SkeletonView", L"0", szText, _countof(szText), pszFileName); @@ -2052,9 +2049,6 @@ BOOL XgExportLooks(HWND hwnd, LPCWSTR pszFileName) // 小さい文字のフォント。 WritePrivateProfileStringW(L"Looks", L"SmallFont", xg_szSmallFont, pszFileName); - // UIフォント。 - WritePrivateProfileStringW(L"Looks", L"UIFont", xg_szUIFont, pszFileName); - // もし黒マス画像が指定されていれば if (xg_strBlackCellImage.size() && xg_strBlackCellImage != XgLoadStringDx1(IDS_NONE)) { diff --git a/HISTORY.txt b/HISTORY.txt index 0e67807..1058283 100644 --- a/HISTORY.txt +++ b/HISTORY.txt @@ -284,6 +284,7 @@ - Proper exclusive control (Part 2). - Added "Jump" feature on double-clicking status bar. - Added "Jump" feature on Right-clicking the clue label. + - The "UI font" settings are no longer read or written in the LOOKS file. # 開発履歴 (Japanese) @@ -884,3 +885,4 @@ - 排他制御をきちんとする(その2)。 - ステータスバーをダブルクリックしたときの「ジャンプ」機能を追加。 - ヒントのラベルを右クリックしたときの「ジャンプ」機能を追加。 + - 「UIフォント」設定をLOOKSファイルで読み書きしないようにした。