All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] blameview: Fix the browse behavior in blameview
@ 2007-02-26  8:31 Aneesh Kumar
  0 siblings, 0 replies; only message in thread
From: Aneesh Kumar @ 2007-02-26  8:31 UTC (permalink / raw)
  To: Git Mailing List, Junio C Hamano

[-- Attachment #1: Type: text/plain, Size: 1 bytes --]



[-- Attachment #2: blameview.patch --]
[-- Type: text/x-patch, Size: 816 bytes --]


We we double click the line we actually wanted to how how the
file looked before the changes was applied.

Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@gmail.com>
---
 contrib/blameview/blameview.perl |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/contrib/blameview/blameview.perl b/contrib/blameview/blameview.perl
index a9a509f..1dec001 100755
--- a/contrib/blameview/blameview.perl
+++ b/contrib/blameview/blameview.perl
@@ -41,7 +41,7 @@ $fileview->set_rules_hint(1);
 $fileview->signal_connect (row_activated => sub {
 		my ($sl, $path, $column) = @_;
 		my $row_ref = $sl->get_row_data_from_path ($path);
-		system("blameview @$row_ref[0] $fn &");
+		system("blameview @$row_ref[0]~1 $fn &");
 		});
 
 my $commitwindow = Gtk2::ScrolledWindow->new();
-- 
1.5.0.1.227.g99d42-dirty


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2007-02-26  8:32 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-02-26  8:31 [PATCH] blameview: Fix the browse behavior in blameview Aneesh Kumar

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.