refactor: avoid using var

This commit is contained in:
Andy Holmes
2023-09-21 23:10:07 -07:00
parent 3c7eac5f23
commit 0d779c6032
6 changed files with 15 additions and 15 deletions

View File

@@ -1223,7 +1223,7 @@ export const Panel = GObject.registerClass({
return;
}
var scrollDelay = SETTINGS.get_int('scroll-panel-delay');
const scrollDelay = SETTINGS.get_int('scroll-panel-delay');
if (scrollDelay) {
this._timeoutsHandler.add([T6, scrollDelay, () => {}]);