From 726c2f195ae7b589bdd2337c7b0b8008e68b99f3 Mon Sep 17 00:00:00 2001 From: Jake Archibald Date: Tue, 6 Nov 2018 13:41:08 +0000 Subject: [PATCH] Fixing graphics glitch. Fixes #166 (#232) --- src/components/Output/style.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/Output/style.scss b/src/components/Output/style.scss index 4b3c45fa..352915c4 100644 --- a/src/components/Output/style.scss +++ b/src/components/Output/style.scss @@ -129,4 +129,8 @@ .output-canvas { flex-shrink: 0; + // This fixes a severe painting bug in Chrome. + // We should try to remove this once the issue is fixed. + // https://bugs.chromium.org/p/chromium/issues/detail?id=870222#c10 + will-change: auto; }