diff options
author | Noel Power <noel.power@suse.com> | 2012-08-29 12:41:25 +0100 |
---|---|---|
committer | Noel Power <noel.power@suse.com> | 2012-08-29 14:28:33 +0100 |
commit | 9e6d1f061c4c61bde3035270ddc76dace0fbdf96 (patch) | |
tree | b29d9dde559dfbbe1fbc16e7f02d1d0d2b88cf36 /sc/source/ui | |
parent | 54928e17451c1fc415be3254f7d73a83e93a8205 (diff) |
don't cover cell with hint window fix for fdo#47595
Change-Id: Iedbe5238deb7ed011423ef211e7fb1e498d27387
Diffstat (limited to 'sc/source/ui')
-rw-r--r-- | sc/source/ui/view/tabview3.cxx | 2 |
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; } |