summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Power <noel.power@suse.com>2012-08-29 12:41:25 +0100
committerNoel Power <noel.power@suse.com>2012-08-29 14:28:33 +0100
commit9e6d1f061c4c61bde3035270ddc76dace0fbdf96 (patch)
treeb29d9dde559dfbbe1fbc16e7f02d1d0d2b88cf36
parent54928e17451c1fc415be3254f7d73a83e93a8205 (diff)
don't cover cell with hint window fix for fdo#47595
Change-Id: Iedbe5238deb7ed011423ef211e7fb1e498d27387
-rw-r--r--sc/source/ui/view/tabview3.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/view/tabview3.cxx b/sc/source/ui/view/tabview3.cxx
index 307f0483f338..ba93fea23743 100644
--- a/sc/source/ui/view/tabview3.cxx
+++ b/sc/source/ui/view/tabview3.cxx
@@ -545,7 +545,7 @@ Point calcHintWindowPosition(
{
// Right margin is good enough.
Point aPos = rCellPos;
- aPos.X() += nMargin;
+ aPos.X() += nMargin + rCellSize.Width();
aPos.Y() = 0;
return aPos;
}