Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Mouse not working when running two dialogues in a sequence #1971

Open
Alina-Valea-Forter opened this issue Jan 31, 2025 · 0 comments
Open

Mouse not working when running two dialogues in a sequence #1971

Alina-Valea-Forter opened this issue Jan 31, 2025 · 0 comments

Comments

@Alina-Valea-Forter
Copy link

Hi,

I am trying to create two dialogues in a sequence. The mouse works fine for the first dialogue, but it stops working in the second dialogue. I can select any option and press the buttons using the mouse in the first dialogue, but not in the second one. Keyboard bindings work in both dialogues.

Example code:

from prompt_toolkit.shortcuts import checkboxlist_dialog

checkboxlist_dialog(
    title="Title 1",
    text="Select one or more options using the Space bar. Use Tab to move focus to the buttons.",
    values=[(choice, choice) for choice in ["Option 1", "Option 2", "Option 3"]],
    default_values=["Option 1"]
).run()

checkboxlist_dialog(
    title="Title 2",
    text="Select one or more options using the Space bar. Use Tab to move focus to the buttons.",
    values=[(choice, choice) for choice in ["Hey 1", "Hey 2", "Hey 3"]],
    default_values=["Hey 1"]
).run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant