1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-06 14:02:47 -05:00

Roman Pompejus's fix for the TAB-not-working-in-Event-Log bug

[originally from svn r891]
This commit is contained in:
Simon Tatham
2001-01-23 17:37:52 +00:00
parent d58d2cc2bb
commit bde2f9ac8a
3 changed files with 13 additions and 12 deletions

View File

@ -564,7 +564,8 @@ int WINAPI WinMain(HINSTANCE inst, HINSTANCE prev, LPSTR cmdline, int show) {
}
if(!timer_id)
timer_id = SetTimer(hwnd, 1, 20, NULL);
DispatchMessage (&msg);
if (!(IsWindow(logbox) && IsDialogMessage(logbox, &msg)))
DispatchMessage (&msg);
/* Make sure we blink everything that needs it. */
term_blink(0);