summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorDarshan11 <darshan.upadhyay@collabora.com>2023-12-01 18:49:32 +0530
committerAndras Timar <andras.timar@collabora.com>2024-01-15 19:41:39 +0100
commit3a63faf973692fde8eba5d37994217dd95c3c902 (patch)
treeaa613ad1a5a0c146d782a17a269d6ea5279afc39 /vcl
parent3d7beb1085827a7166f6892b829fa521b2a1162a (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> (cherry picked from commit 8b08a9927bc4ee66a9575c658934dd27f06be702) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160698 Tested-by: Jenkins
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 3f8853877b08..2bced4d8047b 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 );
AbsoluteScreenPixelPoint 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())
return pWrapper->mpFloatWin->GetParent()->ImplGetFrameWindow()->AbsoluteScreenToOutputPixel( aPos );
return Point(aPos);
}