desktop/source/lib/init.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit bd2d0bec67b5e314df8cebe4f20d7d6e38e3b06d Author: Jan Holesovsky <[email protected]> AuthorDate: Wed Nov 27 13:48:02 2024 +0100 Commit: Miklos Vajna <[email protected]> CommitDate: Wed Dec 10 13:15:30 2025 +0100 coda-m: Don't skip the tile painting on macOS Change-Id: Iecbb24f2bc4b3824cd556baa864327c0c52b1475 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/195349 Reviewed-by: Miklos Vajna <[email protected]> Tested-by: Jenkins diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx index 0f583fc262aa..47b4e4e56cbd 100644 --- a/desktop/source/lib/init.cxx +++ b/desktop/source/lib/init.cxx @@ -4274,7 +4274,7 @@ static void doc_paintTile(LibreOfficeKitDocument* pThis, return; } -#if defined(UNX) && !defined(MACOSX) || defined(_WIN32) +#if defined(UNX) || defined(_WIN32) // Painting of zoomed or HiDPI spreadsheets is special, we actually draw everything at 100%, // and only set cairo's (or CoreGraphic's, in the iOS case) scale factor accordingly, so that
