Skip to content

Commit

Permalink
🐛 Set show_support trait default value to True
Browse files Browse the repository at this point in the history
  • Loading branch information
ollyhensby committed Jan 6, 2025
1 parent 59d9da3 commit fc233c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ipyautoui/custom/buttonbars.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ class CrudButtonBar(w.VBox):
fn_backward = tr.Callable(default_value=lambda: print("backward"))
fn_support = tr.Callable(default_value=lambda: print("support"))
fn_reload = tr.Callable(default_value=None, allow_none=True)
show_support = tr.Bool(default_value=False)
show_support = tr.Bool(default_value=True)

@tr.observe("show_support")
def _observe_show_support(self, change):
Expand Down

0 comments on commit fc233c3

Please sign in to comment.