don't cancel syntax highlight update if previously disabled

This commit is contained in:
LenAnderson 2024-07-22 18:25:43 -04:00
parent 2b653ac8a1
commit 2ac2a2537d
1 changed files with 3 additions and 1 deletions

View File

@ -908,6 +908,7 @@ export class QuickReply {
let lastSyntaxUpdate = 0;
const fpsTime = 1000 / 30;
let lastMessageValue = null;
let wasSyntax = null;
const updateSyntaxLoop = ()=>{
const now = Date.now();
// fps limit
@ -917,7 +918,8 @@ export class QuickReply {
// elements no longer part of the document
if (!messageSyntaxInner.closest('body')) return;
// value hasn't changed
if (lastMessageValue == message.value) return requestAnimationFrame(upsyn);
if (wasSyntax == syntax.checked && lastMessageValue == message.value) return requestAnimationFrame(updateSyntaxLoop);
wasSyntax = syntax.checked;
lastSyntaxUpdate = now;
lastMessageValue = message.value;
updateSyntax();