A cross between sticky notes and a menu full of notes 🤠.
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
1. Please use a less generic name for the default class you are exporting (line 557 `extension.js`). 2. Timeout should be removed on destroy (line 3041 `gzz.js`): [EGO Review Guidelines: Timeout](https://gjs.guide/extensions/review-guidelines/review-guidelines.html#remove-main-loop-sources)
OK both points taken I am away from home just now and don't have access to the latest code will fix in just over a week when I return
No problem.
OK I forgot I could pull from github only problem is how do I remove a time out does this.disconnect do it the docs are not helping
You can remove the timeout in the destroy (line 3025 `gzz.js`).
yes but what function removes a timeout
[`GLib.Source.remove()`](https://gjs-docs.gnome.org/glib20~2.0/glib.source#function-remove) ```js if (this.time_out_id) { GLib.Source.remove(this._sourceId); } ``` You can also use `GLib.source_remove()`
thanks