From: Sup Yut Sum Date: Thu, 31 Jan 2013 00:19:20 +0000 (+0800) Subject: Add refresh (press F5) function in Changed Files Dialog X-Git-Tag: REL_1.8.2.0_EXTERNAL~245 X-Git-Url: https://repo.or.cz/w/TortoiseGit.git/commitdiff_plain/7e4ef1d3945729a93d2ea66a7c8819f35b4c8594 Add refresh (press F5) function in Changed Files Dialog This is useful when comparing to working copy Signed-off-by: Sup Yut Sum --- diff --git a/src/TortoiseProc/FileDiffDlg.cpp b/src/TortoiseProc/FileDiffDlg.cpp index bd344e750..131d014e5 100644 --- a/src/TortoiseProc/FileDiffDlg.cpp +++ b/src/TortoiseProc/FileDiffDlg.cpp @@ -855,6 +855,11 @@ BOOL CFileDiffDlg::PreTranslateMessage(MSG* pMsg) } } break; + case VK_F5: + { + OnTimer(IDT_INPUT); + } + break; } } return __super::PreTranslateMessage(pMsg);