nextcord / nextcord-ext-menus

A nextcord menu and pagination extension that makes working with reaction menus and button component menus a bit easier
https://menus.docs.nextcord.dev
MIT License
26 stars 9 forks source link

Combine separate edits into one #19

Closed DenverCoder1 closed 2 years ago

DenverCoder1 commented 3 years ago

Fixes #18

Previously, ButtonMenuPages updates the menu message two times (one to update the content/embed and another to update the view). This PR consolidates the two edits into a single request for efficiency.

The view kwarg was added to an override of _get_kwargs_from_page so that ButtonMenuPages will always make sure the view is updated when editing the menu and there is no need to update the view at the end of the button callback.

Note:

parker02311 commented 2 years ago

LGTM