This commit is contained in:
David Sparer
2019-05-13 12:17:50 -05:00
parent 565e163b3e
commit 4fc82ab7c1
2 changed files with 2 additions and 1 deletions

View File

@@ -10,6 +10,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- #1437: Norwegian translation improvements
### Fixed
- #1447: Exception occurs when resetting layout
- #1439: Searching in hosts tree loses first keystroke
- #1428: Fixed a rare error when checking for FIPS
- #1426: Tabbing is reversed in config window
- #1425: Connections didn't always respect the Panel property

View File

@@ -338,8 +338,8 @@ namespace mRemoteNG.UI.Window
try
{
if (!char.IsLetterOrDigit(e.KeyChar)) return;
txtSearch.Text = e.KeyChar.ToString();
txtSearch.Focus();
txtSearch.Text = e.KeyChar.ToString();
txtSearch.SelectionStart = txtSearch.TextLength;
}
catch (Exception ex)