Suggess adding the "alert" parameter to Messagebox.show_question() definition #239
goocheez
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The
Messagebox.show_question()
function will ring the display bell by default and cannot be canceled. But I need to cancel the bell sound. So I opensite-packages/ttkbootstrap/dialogs.py
and found thatMessagebox.show_question()
function hasn'talert=True
parameter in the definition. And I added thealert=True
parameter, just like theMessagebox.ok()
does, and it works well.So I suggess adding the "alert" parameter to the
ttkbootstrap.dialogs.Messagebox.show_question()
function definistion, just like following.Beta Was this translation helpful? Give feedback.
All reactions