flecs
flecs copied to clipboard
Fix likes on touchbar (they were inverted)
When we tap on "👍", it doesn't leave a like but does the opposite
When we tap on "👍", it doesn't leave a like but does the opposite
~~can't reproduce~~ nevermind, am stupid.
The issue still exists in v.19 - buttons still inverted.
Looks like the change needed is on line 66 of the file (plugins/touchbar/back.js
) instead:
- controls = [previous, playPause, next, like, dislike];
+ controls = [previous, playPause, next, dislike, like];
I don't have time to make a PR to this repo at the moment sorry, but thought I'd highlight it in case anyone else wants to.
Lol this PR only changed the import deconstruction order which is essentially only changing how the code looks 😂
I don't have time to make a PR to this repo at the moment sorry, but thought I'd highlight it in case anyone else wants to.
@Zo-Bro-23 wanna fix it?
Done (#968)!