From ba4456cf732755b7c6cf44063e18bbccdbc9e9ab Mon Sep 17 00:00:00 2001 From: BDisp Date: Thu, 9 Jul 2020 15:15:49 +0100 Subject: [PATCH] Fixes 769. PositionCursor is now corrected. --- Terminal.Gui/Core/View.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Terminal.Gui/Core/View.cs b/Terminal.Gui/Core/View.cs index 4ad5e6081..127ab973e 100644 --- a/Terminal.Gui/Core/View.cs +++ b/Terminal.Gui/Core/View.cs @@ -1003,7 +1003,7 @@ namespace Terminal.Gui { focused.PositionCursor (); else { if (CanFocus && HasFocus) { - Move (textFormatter.HotKeyPos == -1 ? 1 : textFormatter.HotKeyPos, 0); + Move (textFormatter.HotKeyPos == -1 ? 0 : textFormatter.HotKeyPos, 0); } else { Move (frame.X, frame.Y); }