diff options
author | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-02-15 05:13:56 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-02-15 05:16:35 +0100 |
commit | 4825182fc29e108f236e2a7f55af4ee384eeb6dd (patch) | |
tree | 9a7567924288cac144104e64ab8d1342e1fc9822 | |
parent | 110e5a1749ed49e77a06ff35b329e92049580184 (diff) |
last fix for chart area size and positioning
It WORKS!!!!!!! The chart looks good and there are now only minor
positioning issues. Issues that I'm aware of:
* legend text is not positioned correctly
* text seems to be positioned a bit too far to the right
* bubble positions are incorrect
Change-Id: Ib81cae13624c8119216f0bedea58b5838fcdc80c
-rw-r--r-- | chart2/source/view/main/DummyXShape.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chart2/source/view/main/DummyXShape.cxx b/chart2/source/view/main/DummyXShape.cxx index 3508f19a9ac1..478226ccdfbc 100644 --- a/chart2/source/view/main/DummyXShape.cxx +++ b/chart2/source/view/main/DummyXShape.cxx @@ -822,7 +822,7 @@ awt::Point DummyGroup2D::getPosition() } } - return awt::Point(nTop, nLeft); + return awt::Point(nLeft, nTop); } awt::Size DummyGroup2D::getSize() |