Browse Source

GUI: `F5` refreshes displayed values

pull/899/head
Valentin Radu 4 years ago
parent
commit
5f869cfadb
  1. 5
      ExplorerPatcher/GUI.c

5
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); SetTimer(hWnd, GUI_TIMER_READ_HELP, 200, NULL);
return 0; return 0;
} }
else if (wParam == VK_F5)
{
InvalidateRect(hWnd, NULL, FALSE);
return 0;
}
else if (wParam == 'Z') else if (wParam == 'Z')
{ {
return 0; return 0;

Loading…
Cancel
Save