From 99071d1253b0f1862776a1238694b9a4e501132c Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Tue, 21 May 2013 19:40:33 -0700 Subject: [PATCH] return correct height for svg vector --- src/marker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/marker.cpp b/src/marker.cpp index 557f8fb73..e653aed0a 100644 --- a/src/marker.cpp +++ b/src/marker.cpp @@ -141,7 +141,7 @@ double marker::height() const if (is_bitmap()) return (*bitmap_data_)->height(); else if (is_vector()) - return (*vector_data_)->height(); + return (*vector_data_)->bounding_box().height(); return 0; }