diff options
author | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2018-03-14 14:25:44 +0100 |
---|---|---|
committer | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2018-03-14 20:04:54 +0100 |
commit | d799436414ab7e28b6bf9a918fd3779b3fc85008 (patch) | |
tree | 48adade96ddceb949311b73ed0b75bab6cda0648 /desktop | |
parent | 005abf983d34042a7ced46d886f8ef2250cb3fce (diff) |
tdf#116342 Allow selecting text boxes anywhere by default
Not only by hitting the (invisble) frame or the text content.
Change-Id: I125f76a102611b628411d8c5acf70e3ed9e5e8fe
Reviewed-on: https://gerrit.libreoffice.org/51276
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/qa/desktop_lib/test_desktop_lib.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/desktop/qa/desktop_lib/test_desktop_lib.cxx b/desktop/qa/desktop_lib/test_desktop_lib.cxx index 4e4c4ee3f6ba..0714b6804ca0 100644 --- a/desktop/qa/desktop_lib/test_desktop_lib.cxx +++ b/desktop/qa/desktop_lib/test_desktop_lib.cxx @@ -1280,7 +1280,8 @@ void DesktopLOKTest::testContextMenuImpress() pDocument->pClass->initializeForRendering(pDocument, nullptr); pDocument->pClass->registerCallback(pDocument, &DesktopLOKTest::callback, this); - Point aRandomPoint(1150, 1100); + // random point where we don't hit an underlying comment or text box + Point aRandomPoint(10, 1150); pDocument->pClass->postMouseEvent(pDocument, LOK_MOUSEEVENT_MOUSEBUTTONDOWN, aRandomPoint.X(), aRandomPoint.Y(), |