Skip to content

Commit

Permalink
git-gui: Don't display CR within console windows
Browse files Browse the repository at this point in the history
Git progress bars from tools like git-push and git-fetch use CR
to skip back to the start of the current line and redraw it with
an updated progress.  We were doing this in our Tk widget but had
failed to skip the CR, which Tk doesn't draw well.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
  • Loading branch information
spearce committed Oct 21, 2007
1 parent bea6878 commit bbbadf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/console.tcl
Expand Up @@ -122,7 +122,7 @@ method _read {fd after} {
} else {
$w.m.t delete $console_cr end
$w.m.t insert end "\n"
$w.m.t insert end [string range $buf $c $cr]
$w.m.t insert end [string range $buf $c [expr {$cr - 1}]]
set c $cr
incr c
}
Expand Down

0 comments on commit bbbadf6

Please sign in to comment.