From 4641ce58c3ff7d6e2bb067ccfbb738edf4a17199 Mon Sep 17 00:00:00 2001 From: pypy Date: Sun, 12 Jan 2020 22:46:29 +0900 Subject: [PATCH] bugfix (get weird on resizing) --- html/app.js | 1 + 1 file changed, 1 insertion(+) diff --git a/html/app.js b/html/app.js index 277620dd..c3cfcd9d 100644 --- a/html/app.js +++ b/html/app.js @@ -193,6 +193,7 @@ CefSharp.BindObjectAsync( }); var $appDarkStyle = document.createElement('link'); + $appDarkStyle.disabled = true; $appDarkStyle.rel = 'stylesheet'; $appDarkStyle.href = `app.dark.css?_=${Date.now()}`; document.head.appendChild($appDarkStyle);