diff options
author | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-03-12 11:18:08 +0000 |
---|---|---|
committer | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-03-12 13:02:29 +0100 |
commit | c471d021b91331241a7630cca098f1347deda1bb (patch) | |
tree | 5d158bd62ccbbadefc04ad83f572faf3c2d50e42 /sw | |
parent | 375c49929f7cd41d637f26b9caa0930506b27a24 (diff) |
Draw indicators for header/footer when cursor is inside one
for real, typo the last time :-(
Change-Id: Iab781851d1e852511e64737b678463620e5d6786
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/164683
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Tested-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/layout/paintfrm.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/layout/paintfrm.cxx b/sw/source/core/layout/paintfrm.cxx index 9b97fed6d5e2..e0e1f41f54ad 100644 --- a/sw/source/core/layout/paintfrm.cxx +++ b/sw/source/core/layout/paintfrm.cxx @@ -7168,7 +7168,7 @@ static std::vector<basegfx::B2DPolygon> lcl_CreatePageAreaDelimiterPolygons(cons std::vector<basegfx::B2DPolygon> aPolygons; // Hide text boundaries by default - cool#3491 - if (!bHeaderFooter && !comphelper::LibreOfficeKit::isActive()) + if (!bHeaderFooter && comphelper::LibreOfficeKit::isActive()) return aPolygons; double nLineLength = 200.0; // in Twips |