diff options
author | Faisal M. Al-Otaibi <fmalotaibi@kacst.edu.sa> | 2014-01-29 12:49:42 +0300 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-01-30 12:02:03 +0000 |
commit | f5115e33e4c5e49e9b79ed32fccc193a99c3dc30 (patch) | |
tree | 5f0c828d54f574dd15da84d62575c5e0f392b147 /sfx2/source | |
parent | bc46764f12947cbe8d46e03450f181d449c020f4 (diff) |
fdo#73869 fix highlight RTL Problem at the StartCenter window.
Change-Id: I744d8f85c6e4c555ef8916281ebdc709fe6ddfa9
Reviewed-on: https://gerrit.libreoffice.org/7719
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sfx2/source')
-rw-r--r-- | sfx2/source/control/thumbnailview.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/control/thumbnailview.cxx b/sfx2/source/control/thumbnailview.cxx index 06f5800d3c97..eda19f04710b 100644 --- a/sfx2/source/control/thumbnailview.cxx +++ b/sfx2/source/control/thumbnailview.cxx @@ -86,7 +86,7 @@ ThumbnailView::~ThumbnailView() void ThumbnailView::MouseMove(const MouseEvent& rMEvt) { size_t nItemCount = mFilteredItemList.size(); - Point aPoint = GetPointerState().maPos; + Point aPoint = rMEvt.GetPosPixel(); OUString aHelp; for (size_t i = 0; i < nItemCount; i++) |