summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorDarshan11 <darshan.upadhyay@collabora.com>2023-12-01 18:49:32 +0530
committerSzymon Kłos <szymon.klos@collabora.com>2023-12-04 09:45:55 +0100
commit8b08a9927bc4ee66a9575c658934dd27f06be702 (patch)
tree89d804bc62fb61f694c127106a986e7061197a53 /vcl
parent2cc3e16f8e3f50d0fa53f15f78bba3afe29977bd (diff)
Fix posx and posy for Filter by color in autofilter jsDialog
Change-Id: I2d4cd198197250495cc87eb1ee68407baf8e6a1a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160216 Reviewed-by: Szymon Kłos <szymon.klos@collabora.com> Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/window/dockwin.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/window/dockwin.cxx b/vcl/source/window/dockwin.cxx
index 74c18cca5159..dab053b3fba9 100644
--- a/vcl/source/window/dockwin.cxx
+++ b/vcl/source/window/dockwin.cxx
@@ -927,7 +927,7 @@ Point DockingWindow::GetFloatingPos() const
pWrapper->mpFloatWin->GetWindowState( aData );
Point aPos(aData.x(), aData.y());
// LOK needs logic coordinates not absolute screen position for autofilter menu
- if (!comphelper::LibreOfficeKit::isActive() || get_id() != "check_list_menu")
+ if (!comphelper::LibreOfficeKit::isActive())
aPos = pWrapper->mpFloatWin->GetParent()->ImplGetFrameWindow()->AbsoluteScreenToOutputPixel( aPos );
return aPos;
}