From: Tony Finch Date: Fri, 27 Mar 2015 15:55:09 +0000 (+0000) Subject: Make overlay the default style X-Git-Url: https://git.uis.cam.ac.uk/x/uis/u/fanf2/git-graph.git/commitdiff_plain/22e04a63b2f1f66c50b41ac9a530eb50359e445e?hp=cb4ff77a58871522d2de7f4efd41496a327c1fc3 Make overlay the default style --- 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;