summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-05-26 03:20:12 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-05-26 03:29:09 +0200
commitdc91ebed1a3b0ef900b1bb5cf203c6a9aeb83016 (patch)
treedbae3fd51b4bc5951e7aeba6a5b13e7e87c473eb /vcl
parent8097fff2cc3ec601248c55f4d1434bd6d4c6c66e (diff)
react only to left mouse click
Change-Id: Ia4c2c52b8803cd36d7ed32be559ba446589377e7
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/window/openglwin.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/window/openglwin.cxx b/vcl/source/window/openglwin.cxx
index 455e455feaf9..19833763ecaf 100644
--- a/vcl/source/window/openglwin.cxx
+++ b/vcl/source/window/openglwin.cxx
@@ -68,7 +68,7 @@ void OpenGLWindow::MouseButtonUp( const MouseEvent& rMEvt )
Color aColor = GetPixel(aPoint);
SAL_WARN("vcl.opengl", aColor.GetColor());
if(mpRenderer)
- mpRenderer->clickedAt(aPoint);
+ mpRenderer->clickedAt(aPoint, rMEvt.GetButtons());
}
else
{