This commit is contained in:
owomomo 2019-04-20 19:15:04 +08:00 committed by GitHub
parent e7f4393fcc
commit da99ce1894
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1138,11 +1138,11 @@ LRESULT CALLBACK RamWatchProc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam
}
case NM_SETFOCUS:
listFocus = true;
InvalidateRect(GetDlgItem(RamWatchHWnd, IDC_WATCHLIST), 0, 0);
InvalidateRect(GetDlgItem(hDlg, IDC_WATCHLIST), 0, 0);
break;
case NM_KILLFOCUS:
listFocus = false;
InvalidateRect(GetDlgItem(RamWatchHWnd, IDC_WATCHLIST), 0, 0);
InvalidateRect(GetDlgItem(hDlg, IDC_WATCHLIST), 0, 0);
break;
case NM_CUSTOMDRAW:
{