diff --git a/basis/ui/gadgets/worlds/worlds-docs.factor b/basis/ui/gadgets/worlds/worlds-docs.factor index 35781fa568..60e4e58ed5 100644 --- a/basis/ui/gadgets/worlds/worlds-docs.factor +++ b/basis/ui/gadgets/worlds/worlds-docs.factor @@ -2,6 +2,10 @@ USING: ui.gadgets ui.render ui.gestures ui.backend help.markup help.syntax models opengl strings ; IN: ui.gadgets.worlds +HELP: user-input +{ $values { "string" string } { "world" world } } +{ $description "Calls " { $link user-input* } " on every parent of the world's currently-focused child." } ; + HELP: origin { $var-description "Within the dynamic extent of " { $link draw-world } ", holds the co-ordinate system origin for the gadget currently being drawn." } ; diff --git a/basis/ui/gestures/gestures-docs.factor b/basis/ui/gestures/gestures-docs.factor index 5e7bd51bec..f6495a14c3 100644 --- a/basis/ui/gestures/gestures-docs.factor +++ b/basis/ui/gestures/gestures-docs.factor @@ -21,10 +21,6 @@ HELP: propagate-gesture { $values { "gesture" "a gesture" } { "gadget" gadget } } { $description "Calls " { $link handle-gesture } " on every parent of " { $snippet "gadget" } "." } ; -HELP: user-input -{ $values { "string" string } { "world" world } } -{ $description "Calls " { $link user-input* } " on every parent of the world's currently-focused child." } ; - HELP: motion { $class-description "Mouse motion gesture." } { $examples { $code "T{ motion }" } } ;