From 0f95449910ba4022c2f14196163e77cff9620987 Mon Sep 17 00:00:00 2001 From: Joel Holdsworth Date: Sun, 28 Dec 2014 18:52:50 +0000 Subject: [PATCH] ViewItemPaintParams: Fixed height() --- pv/view/viewitempaintparams.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pv/view/viewitempaintparams.hpp b/pv/view/viewitempaintparams.hpp index a8b51906..73551e6d 100644 --- a/pv/view/viewitempaintparams.hpp +++ b/pv/view/viewitempaintparams.hpp @@ -64,7 +64,7 @@ public: } int height() const { - return rect_.width(); + return rect_.height(); } double pixels_offset() const { -- 2.30.2