Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Show page before starting the menu #37

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions discord/ext/menus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -964,6 +964,8 @@ async def send_initial_message(self, ctx, channel):

async def start(self, ctx, *, channel=None, wait=False):
await self._source._prepare_once()
if self.message is not None:
await self.show_page(0)
ToxicKidz marked this conversation as resolved.
Show resolved Hide resolved
await super().start(ctx, channel=channel, wait=wait)

async def show_checked_page(self, page_number):
Expand Down