Skip to content

Commit

Permalink
Update keyboard.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
elfmz authored Dec 14, 2024
1 parent 9ef3316 commit 5cf7786
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion far2l/src/console/keyboard.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -797,11 +797,12 @@ DWORD GetInputRecord(INPUT_RECORD *rec, bool ExcludeMacro, bool ProcessMouse, bo
CalcKey = rec->Event.FocusEvent.bSetFocus ? KEY_GOTFOCUS : KEY_KILLFOCUS;
memset(rec, 0, sizeof(*rec));
rec->EventType = KEY_EVENT;
// чтоб решить баг винды приводящий к появлению скролов и т.п. после потери фокуса
/* // чтоб решить баг винды приводящий к появлению скролов и т.п. после потери фокуса
if (CalcKey == KEY_GOTFOCUS)
RestoreConsoleWindowRect();
else
SaveConsoleWindowRect();
*/

return CalcKey;
}
Expand Down

0 comments on commit 5cf7786

Please sign in to comment.