Skip to content

Commit

Permalink
Always reset '_receivedKeyDown' flag on keyup so its not stale for la…
Browse files Browse the repository at this point in the history
…ter keypresses
  • Loading branch information
Coridyn committed Oct 21, 2020
1 parent ec1f7d1 commit e446329
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/cascadia/TerminalApp/Tab.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -794,7 +794,10 @@ namespace winrt::TerminalApp::implementation
tab->_UpdateTitle();
break;
}
}

if (tab)
{
tab->_receivedKeyDown = false;
}
});
Expand Down

0 comments on commit e446329

Please sign in to comment.