Skip to content

Commit

Permalink
Change #:checkable? contact to any/c
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudrac3r authored and Bogdanp committed Mar 1, 2024
1 parent a1d0175 commit b7c625b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gui-easy-lib/gui/easy/view.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
view/c)]
[checkable-menu-item (->* ((maybe-obs/c maybe-label/c))
((-> boolean? any)
#:checked? (maybe-obs/c boolean?)
#:checked? (maybe-obs/c any/c)
#:enabled? (maybe-obs/c any/c)
#:help (maybe-obs/c (or/c #f string?))
#:shortcut (maybe-obs/c (or/c #f (*list/c
Expand Down
2 changes: 1 addition & 1 deletion gui-easy/gui/easy/scribblings/reference.scrbl
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@

@defproc[(checkable-menu-item [label (maybe-obs/c maybe-label/c)]
[action (-> boolean? any) void]
[#:checked? checked? (maybe-obs/c boolean?) #f]
[#:checked? checked? (maybe-obs/c any/c) #f]
[#:enabled? enabled? (maybe-obs/c any/c) #t]
[#:help help-text (maybe-obs/c (or/c #f string?)) #f]
[#:shortcut shortcut (maybe-obs/c (or/c #f (*list/c
Expand Down

0 comments on commit b7c625b

Please sign in to comment.