From f73252431bc6391e170be782be2e20eac91210b1 Mon Sep 17 00:00:00 2001 From: Lourens Rozema Date: Fri, 20 Aug 2010 21:35:24 +0200 Subject: [PATCH] Bug fix of invalid presentation of container's split orientation. --- dump-asy.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dump-asy.pl b/dump-asy.pl index 343a39c4..315dcc6f 100755 --- a/dump-asy.pl +++ b/dump-asy.pl @@ -22,7 +22,7 @@ say $tmp "treeLevelStep = 2cm;"; sub dump_node { my ($n, $parent) = @_; - my $o = ($n->{orientation} == 0 ? "h" : "v"); + my $o = ($n->{orientation} == 0 ? "u" : ($n->{orientation} == 1 ? "h" : "v")); my $w = (defined($n->{window}) ? $n->{window} : "N"); my $na = $n->{name}; $na =~ s/#/\\#/g; -- 2.39.5