From c61f6f8c6619e1f435fd5f3d556ab18ac0e6fd90 Mon Sep 17 00:00:00 2001 From: Bogdan Popa Date: Fri, 1 Mar 2024 14:09:33 +0200 Subject: [PATCH] doc: add @history note for checkable-menu-item --- gui-easy/gui/easy/scribblings/reference.scrbl | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/gui-easy/gui/easy/scribblings/reference.scrbl b/gui-easy/gui/easy/scribblings/reference.scrbl index 1f558ec..c3705c0 100644 --- a/gui-easy/gui/easy/scribblings/reference.scrbl +++ b/gui-easy/gui/easy/scribblings/reference.scrbl @@ -182,7 +182,13 @@ (or/c 'alt 'cmd 'meta 'ctl 'shift 'option) (or/c char? symbol?)))) #f]) (is-a?/c view<%>)]{ - Returns a representation of a menu item with a checkbox. The @racket[action] callback is called with the current checked state when the menu item is clicked. Use @racket[#:checked?] to set or update the checkbox programmatically.} + Returns a representation of a menu item with a checkbox. The + @racket[action] callback is called with the current checked state + when the menu item is clicked. Use @racket[#:checked?] to set or + update the checkbox programmatically. + + @history[#:added "0.18"] +} @defproc[(menu-item-separator) (is-a?/c view<%>)]{ Returns a representation of a menu item separator.