4f650f5ffb
setStyle() was called at module init time (to restore the saved style from localStorage) before the let overviewDrawPending declaration, which caused a ReferenceError: Cannot access 'overviewDrawPending' before initialization. Fix: hoist let overviewDrawPending = false to the top of the variable declarations block, before any top-level code that may call scheduleOverviewDraw(). Remove the now-duplicate declaration from its original location. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Signed-off-by: Stan Grams <sjg@haxx.space>