summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorTamás Zolnai <tamas.zolnai@collabora.com>2020-04-07 10:31:51 +0200
committerTamás Zolnai <tamas.zolnai@collabora.com>2020-04-07 11:40:19 +0200
commitb834f5fe933c0876ce61d8550a0d6144e098876f (patch)
tree803e39b9fede81d5f6e8413223f58adc49d454cd /vcl
parent09c3017758e074fcb9e37a4a22c7f66c9ae38586 (diff)
lok: Don't show tooltip for color picker.
Change-Id: I0715875cdc194ac7d7a9683d644183d75984a466 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91802 Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com> Reviewed-by: Tamás Zolnai <tamas.zolnai@collabora.com>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/window/winproc.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/window/winproc.cxx b/vcl/source/window/winproc.cxx
index b3ea4f5bf97e..8377691e1527 100644
--- a/vcl/source/window/winproc.cxx
+++ b/vcl/source/window/winproc.cxx
@@ -166,7 +166,7 @@ static void ImplHandleMouseHelpRequest( vcl::Window* pChild, const Point& rMouse
// (e.g. Character Properties dialog -> Font Effects -> Font Color)
if(pChild->GetType() == WindowType::CONTROL &&
pChild->GetParent() && pChild->GetParent()->GetParent() &&
- pChild->GetParent()->GetParent()->GetType() == WindowType::DOCKINGWINDOW)
+ pChild->GetParent()->GetParent()->GetType() == WindowType::SCROLLWINDOW)
return;
}