A GNOME extension to change ROGs' keyboard color.
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
Timeout should be removed on destroy (line 85 `extension.js`): [EGO Review Guidelines: Timeout](https://gjs.guide/extensions/review-guidelines/review-guidelines.html#remove-main-loop-sources)
Would this approach solve the problem: disable() { if (this._indicator) { if (this._indicator._scrollTimeoutId) { GLib.Source.remove(this._indicator._scrollTimeoutId); this._indicator._scrollTimeoutId = null; } this._indicator.destroy(); this._indicator = null; } }
Do it in the same class: ```js destroy() { if (this._scrollTimeoutId) { GLib.Source.remove(this._scrollTimeoutId); } super.destroy(); } ```