fixed bug breaking forceTick

This commit is contained in:
Laetitia (O-01-67) 2023-03-08 17:04:20 -05:00 committed by GitHub
parent c84eda85a9
commit c62f5fc261
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -112,8 +112,8 @@ function findFilterPrompt() {
runAfterLoad(function() { runAfterLoad(function() {
oldDrawPixels = drawPixels; oldDrawPixels = drawPixels;
drawPixels = function() { drawPixels = function(forceTick=false) {
oldDrawPixels(); oldDrawPixels(forceTick);
//console.log(find); //console.log(find);
if(find) { findHighlighting() }; if(find) { findHighlighting() };
}; };