Fix gesture logger bug which was breaking UI
parent
0f9a707c55
commit
1756e94824
|
@ -16,7 +16,9 @@ window-loc ;
|
||||||
: find-world ( gadget -- world/f ) [ world? ] find-parent ;
|
: find-world ( gadget -- world/f ) [ world? ] find-parent ;
|
||||||
|
|
||||||
: show-status ( string/f gadget -- )
|
: show-status ( string/f gadget -- )
|
||||||
find-world dup [ status>> set-model ] [ 2drop ] if ;
|
find-world dup [
|
||||||
|
status>> dup [ set-model ] [ 2drop ] if
|
||||||
|
] [ 2drop ] if ;
|
||||||
|
|
||||||
: hide-status ( gadget -- ) f swap show-status ;
|
: hide-status ( gadget -- ) f swap show-status ;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue