Vexed01 / Vex-Cogs

My cogs for Red.
https://cogdocs.vexcodes.com
GNU General Public License v3.0
27 stars 20 forks source link

[ButtonPoll, Calc] Fix dpy2 breaking change #94

Closed Lifeismana closed 2 years ago

Lifeismana commented 2 years ago

Fix the following breaking change from dpy2 that happened last week

  • The arguments for item, interaction inside View callbacks have been swapped to interaction, item for consistency with the rest of the library.
  • So, if you had (self, button, interaction) as a callback in a View it should change to (self, interaction, button).
Vexed01 commented 2 years ago

Thanks