From d14b6b22dadda2f735b5942f6b3253b3f6e9d22f Mon Sep 17 00:00:00 2001 From: Katayama Hirofumi MZ Date: Sun, 31 Mar 2024 15:37:38 +0900 Subject: [PATCH] don't load/save [UI Font] settings into/from LOOKS file --- GUI.cpp | 6 ------ HISTORY.txt | 2 ++ 2 files changed, 2 insertions(+), 6 deletions(-) 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ファイルで読み書きしないようにした。