summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorPranam Lashkari <lpranam@collabora.com>2020-04-29 00:20:12 +0530
committerAndras Timar <andras.timar@collabora.com>2020-05-27 08:52:21 +0200
commit50fe88d7ab2c5cc008571cc3d6ed3d6e2a68dd28 (patch)
tree3e8f66cb33eff21480f6304cf2ca0f5d44608105 /desktop
parenteaac3a414e27aa221c6b1ee1fbfd10c39b5cda84 (diff)
tdf#131230: Sidebar: Can't set Automatic color
This also solved the issue in sidebar with some controls when selecting an item it selects the item below Change-Id: I607b8bc44402b57b5c4833f918fb41b23ddf48c2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/93099 Tested-by: Marco Cecchetti <marco.cecchetti@collabora.com> Reviewed-by: Marco Cecchetti <marco.cecchetti@collabora.com> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94855 Tested-by: Andras Timar <andras.timar@collabora.com> Reviewed-by: Andras Timar <andras.timar@collabora.com>
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/lib/init.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index d8f973dc3d83..8d3b0ddf7e26 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -3951,9 +3951,8 @@ static void doc_postWindowMouseEvent(LibreOfficeKitDocument* /*pThis*/, unsigned
return;
}
- Size aOffset(pWindow->GetOutOffXPixel(), pWindow->GetOutOffYPixel());
- Point aPos(nX, nY);
- aPos.Move(aOffset);
+ const Point aPos(nX, nY);
+
MouseEvent aEvent(aPos, nCount, MouseEventModifiers::SIMPLECLICK, nButtons, nModifier);
if (Dialog* pDialog = dynamic_cast<Dialog*>(pWindow.get()))