From 22e04a63b2f1f66c50b41ac9a530eb50359e445e Mon Sep 17 00:00:00 2001 From: Tony Finch Date: Fri, 27 Mar 2015 15:55:09 +0000 Subject: [PATCH 1/1] Make overlay the default style --- git-graph | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-graph b/git-graph index c74d234..bf3df90 100755 --- a/git-graph +++ b/git-graph @@ -16,7 +16,7 @@ GetOptions(\%opt, qw{ stack|s }) or exit 1; -$opt{stack} = 1 unless $opt{cancel} or $opt{overlay}; +$opt{overlay} = 1 unless $opt{cancel} or $opt{stack}; my @terminal = GetTerminalSize; my $width = $terminal[0] - 11; -- 2.19.1.240.g7d280c7607