summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBert Wesarg <bert.wesarg@googlemail.com>2011-10-20 21:30:30 +0200
committerPat Thoyts <patthoyts@users.sourceforge.net>2011-10-21 22:28:27 +0100
commitff3f01bba9d67a6f7194bbcf2716e55cc596cce1 (patch)
tree2d856f00c639d3409daeaa5ec56e24e5008c7ff6
parentf9ace9e63d1ea0ce55b8239971b3c99d32dd4692 (diff)
downloadgit-ff3f01bba9d67a6f7194bbcf2716e55cc596cce1.tar.gz
git-gui: span widgets over the full file output area in the blame view
Signed-off-by: Bert Wesarg <bert.wesarg@googlemail.com> Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
-rw-r--r--lib/blame.tcl9
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/blame.tcl b/lib/blame.tcl
index 49eae1912a..b031e66a4b 100644
--- a/lib/blame.tcl
+++ b/lib/blame.tcl
@@ -219,7 +219,8 @@ constructor new {i_commit i_path i_jump} {
eval grid $w_columns $w.file_pane.out.sby -sticky nsew
grid conf \
$w.file_pane.out.sbx \
- -column [expr {[llength $w_columns] - 1}] \
+ -column 0 \
+ -columnspan [expr {[llength $w_columns] + 1}] \
-sticky we
grid columnconfigure \
$w.file_pane.out \
@@ -229,12 +230,14 @@ constructor new {i_commit i_path i_jump} {
set finder [::searchbar::new \
$w.file_pane.out.ff $w_file \
- -column [expr {[llength $w_columns] - 1}] \
+ -column 0 \
+ -columnspan [expr {[llength $w_columns] + 1}] \
]
set gotoline [::linebar::new \
$w.file_pane.out.lf $w_file \
- -column [expr {[llength $w_columns] - 1}] \
+ -column 0 \
+ -columnspan [expr {[llength $w_columns] + 1}] \
]
set w_cviewer $w.file_pane.cm.t