diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2007-06-02 14:35:44 -0400 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2007-06-06 01:26:49 -0400 |
commit | 375e1365a62df3cd944ec0e91051b94d710a7c6d (patch) | |
tree | 4c8251cd508f2f0d618ed8df6a07bfe31985106d | |
parent | 000a10696c0bc1e428bbd22af9e19b27795e72dd (diff) | |
download | git-375e1365a62df3cd944ec0e91051b94d710a7c6d.tar.gz git-375e1365a62df3cd944ec0e91051b94d710a7c6d.tar.xz |
git-gui: Make the line number column slightly wider in blame
Most source code files are under 9,999 lines of text, so using a
field width of 5 characters meant that we should have had one char
padding on the left edge (because we right-justify the line number).
Unfortunately when I added the right margin earlier (when I removed
the padding) I ate into the extra character's space, losing the left
margin. This put the line numbers too close to the commit column in
any file with more than 999 lines in it.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
-rw-r--r-- | lib/blame.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/blame.tcl b/lib/blame.tcl index 1c3f5e985..556170268 100644 --- a/lib/blame.tcl +++ b/lib/blame.tcl @@ -122,7 +122,7 @@ constructor new {i_commit i_path} { -state disabled \ -wrap none \ -height 40 \ - -width 5 \ + -width 6 \ -font font_diff $w_line tag conf linenumber -justify right -rmargin 5 |