From dcb7171940e73a225b0392895c2739af3806a613 Mon Sep 17 00:00:00 2001 From: Jake Archibald Date: Mon, 29 Oct 2018 10:52:48 +0000 Subject: [PATCH] Fixing graphics glitch. Fixes #166 --- 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; }