From c8c5f3de21786ee81047e190e06a3e7f59d5ebcc Mon Sep 17 00:00:00 2001 From: fvogel Date: Sat, 12 Aug 2017 19:45:14 +0000 Subject: Fix [3295446]: Make the insertion cursor always visible when browsing console history. Patch from Andy Goth. --- library/console.tcl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/library/console.tcl b/library/console.tcl index ba68ccc..355a43b 100644 --- a/library/console.tcl +++ b/library/console.tcl @@ -286,6 +286,7 @@ proc ::tk::ConsoleHistory {cmd} { } .console delete promptEnd end .console insert promptEnd $cmd {input stdin} + .console see end } next { incr HistNum @@ -302,6 +303,7 @@ proc ::tk::ConsoleHistory {cmd} { } .console delete promptEnd end .console insert promptEnd $cmd {input stdin} + .console see end } reset { set HistNum 1 -- cgit v0.12