* [PATCH] git-gui: span widgets over the full file output area in the blame view
@ 2011-10-20 19:30 Bert Wesarg
2011-10-21 21:41 ` Pat Thoyts
0 siblings, 1 reply; 2+ messages in thread
From: Bert Wesarg @ 2011-10-20 19:30 UTC (permalink / raw)
To: Pat Thoyts; +Cc: git, Bert Wesarg
Signed-off-by: Bert Wesarg <bert.wesarg@googlemail.com>
---
lib/blame.tcl | 9 ++++++---
1 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/lib/blame.tcl b/lib/blame.tcl
index 49eae19..b031e66 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
--
1.7.7.759.gfc8c6
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] git-gui: span widgets over the full file output area in the blame view
2011-10-20 19:30 [PATCH] git-gui: span widgets over the full file output area in the blame view Bert Wesarg
@ 2011-10-21 21:41 ` Pat Thoyts
0 siblings, 0 replies; 2+ messages in thread
From: Pat Thoyts @ 2011-10-21 21:41 UTC (permalink / raw)
To: Bert Wesarg; +Cc: git
Bert Wesarg <bert.wesarg@googlemail.com> writes:
>Signed-off-by: Bert Wesarg <bert.wesarg@googlemail.com>
>---
> lib/blame.tcl | 9 ++++++---
> 1 files changed, 6 insertions(+), 3 deletions(-)
>
>diff --git a/lib/blame.tcl b/lib/blame.tcl
>index 49eae19..b031e66 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
Looks good. Applied.
--
Pat Thoyts http://www.patthoyts.tk/
PGP fingerprint 2C 6E 98 07 2C 59 C8 97 10 CE 11 E6 04 E0 B9 DD
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-10-21 21:41 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-20 19:30 [PATCH] git-gui: span widgets over the full file output area in the blame view Bert Wesarg
2011-10-21 21:41 ` Pat Thoyts
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).