fix(glance-nav): use debounce instead of throttle

This commit is contained in:
Julian Lam
2022-12-12 16:46:29 -05:00
parent 038e7515fd
commit 0f7c9a7919

View File

@@ -76,7 +76,7 @@ function enableHandle() {
return;
}
const tUpdateHandleText = utils.throttle(updateHandleText, 250);
const tUpdateHandleText = utils.debounce(updateHandleText, 250);
toggle(true);
active = true;