How to control the order of top/bottom widgets in a page

Converting my qn from chat into a post:

Not sure if there was an answer for this in the forum before - in V2, if I have a page with multiple widgets attached to hooks.renderBottomWidgets or hooks.renderTopWidgets, can I somehow control the order in which the widgets are displayed? For me, the Linked Mentions widgets is always the first one in the bottom list and wanted to change that. (I’m on V2 latest stable release)

This should just follow the order in which the event listeners are subscribed to, which would mean that by tweaking the space-lua loading order (via -- priority: 20 for instance, since the builtin ones has priority 10) in your own widget listening code should also change the order in which widgets appear.

That worked..!! - had to reload and refresh a few times. I’m sure I had tried this before - maybe I missed reloading the widgets.

Hmm, in theory reloading shouldn’t be necessary, just a System: Reload should theoretically suffice.