From 4fc82ab7c19f69ffbe839023e28e846ed4874c80 Mon Sep 17 00:00:00 2001 From: David Sparer Date: Mon, 13 May 2019 12:17:50 -0500 Subject: [PATCH] fixes #1439 --- CHANGELOG.md | 1 + mRemoteV1/UI/Window/ConnectionTreeWindow.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e08e79eda..233a5e019 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/mRemoteV1/UI/Window/ConnectionTreeWindow.cs b/mRemoteV1/UI/Window/ConnectionTreeWindow.cs index ad4697396..137f9d53e 100644 --- a/mRemoteV1/UI/Window/ConnectionTreeWindow.cs +++ b/mRemoteV1/UI/Window/ConnectionTreeWindow.cs @@ -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)