Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
katahiromz committed Apr 2, 2024
1 parent dd5cc2a commit 98eb977
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions XG_SettingsDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,7 @@ BOOL XG_SettingsDialog::OnInitDialog(HWND hwnd)
UpdateBlockPreview(hwnd);

// 可能ならば自動で適用。
if (m_strAutoFile.size())
{
if (m_strAutoFile.size()) {
if (m_bImport) {
DoImportLooks(hwnd, m_strAutoFile.c_str());
} else {
Expand Down Expand Up @@ -402,7 +401,12 @@ BOOL XG_SettingsDialog::DoImportLooks(HWND hwnd, LPCWSTR pszFileName)
GetPrivateProfileStringW(L"Looks", L"OuterFrameInPt", XG_OUTERFRAME_DEFAULT2, szText, _countof(szText), pszFileName);
::SetDlgItemTextW(hwnd, edt7, szText);

// プレビューを更新する。
UpdateBlockPreview(hwnd);

// 他のダイアログに同期させる。
SyncTo(hwnd);

return TRUE;
}

Expand Down Expand Up @@ -636,7 +640,11 @@ void XG_SettingsDialog::OnResetLooks(HWND hwnd)
::SetDlgItemTextW(hwnd, edt7, XG_OUTERFRAME_DEFAULT2);
::EnableWindow(GetDlgItem(hwnd, edt7), TRUE);

// プレビューを更新する。
UpdateBlockPreview(hwnd);

// 他のダイアログに同期させる。
SyncTo(hwnd);
}

// UIフォントの論理オブジェクトを設定する。
Expand Down

0 comments on commit 98eb977

Please sign in to comment.