Skip to content

Commit

Permalink
fixes issue 434. The "default" must not be wrapped in a tuple for it …
Browse files Browse the repository at this point in the history
…to work properly in create_buttonbox(). Manual test using the reproducing code published for issue 434 shows that this fixes the issue. (israel-dryer#435)
  • Loading branch information
bszollosinagy authored May 11, 2023
1 parent 104fb7d commit 7ab4e07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ttkbootstrap/dialogs/dialogs.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ def __init__(
self._command = command
self._width = width
self._alert = alert
self._default = (default,)
self._default = default
self._padding = padding
self._icon = icon
self._localize = kwargs.get("localize")
Expand Down

0 comments on commit 7ab4e07

Please sign in to comment.