From e01ebe1ae8c7f600a03c721a8d8798d7a27a0605 Mon Sep 17 00:00:00 2001 From: George Gevoian Date: Mon, 18 Sep 2023 10:40:07 -0400 Subject: [PATCH] (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 --- app/client/components/modals.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/client/components/modals.ts b/app/client/components/modals.ts index f95e157c..06ed405f 100644 --- a/app/client/components/modals.ts +++ b/app/client/components/modals.ts @@ -201,6 +201,10 @@ export function showBehavioralPrompt( boundariesElement: 'window', padding: 32, }, + computeStyle: { + // GPU acceleration makes text look blurry. + gpuAcceleration: false, + }, } }) );