From 5f869cfadb38ce4a9c7c94ef680be8c5eb1b402e Mon Sep 17 00:00:00 2001 From: Valentin Radu Date: Sun, 20 Feb 2022 18:10:43 +0200 Subject: [PATCH] GUI: `F5` refreshes displayed values --- ExplorerPatcher/GUI.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ExplorerPatcher/GUI.c b/ExplorerPatcher/GUI.c index eb5669c..e8097e8 100644 --- a/ExplorerPatcher/GUI.c +++ b/ExplorerPatcher/GUI.c @@ -3288,6 +3288,11 @@ static LRESULT CALLBACK GUI_WindowProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPAR SetTimer(hWnd, GUI_TIMER_READ_HELP, 200, NULL); return 0; } + else if (wParam == VK_F5) + { + InvalidateRect(hWnd, NULL, FALSE); + return 0; + } else if (wParam == 'Z') { return 0;