(core) Fix blurry tooltips

Summary: GPU acceleration was causing tooltip text to appear blurry.

Test Plan: Manual.

Reviewers: jarek

Reviewed By: jarek

Differential Revision: https://phab.getgrist.com/D4046
This commit is contained in:
George Gevoian 2023-09-18 10:40:07 -04:00
parent 273b976cab
commit e01ebe1ae8

View File

@ -201,6 +201,10 @@ export function showBehavioralPrompt(
boundariesElement: 'window', boundariesElement: 'window',
padding: 32, padding: 32,
}, },
computeStyle: {
// GPU acceleration makes text look blurry.
gpuAcceleration: false,
},
} }
}) })
); );