diff --git a/TODO.FACTOR.txt b/TODO.FACTOR.txt index e37b464392..26a0913c7f 100644 --- a/TODO.FACTOR.txt +++ b/TODO.FACTOR.txt @@ -8,7 +8,6 @@ - multiple listener-run-files is broken - roundoff is still not quite right with tracks -- world title a model? gadget-title returns one - httpd search tools - get embedded factor templates in httpd working better - docs: slice: if sequence or seq start is changed, abstraction violation @@ -29,10 +28,10 @@ tathi: hrm. wish I knew more about OpenGL. + ui: +- xref f and \ f together - grid slows down with 2000 lines - f should be clickable - clickable vocabs -- x11 raise-window - remaining HTML issues need fixing - better component padding and spacing in UI - see if its possible to only repaint dirty regions diff --git a/library/io/unix/load.factor b/library/io/unix/load.factor index f47e43993b..96c3ac4816 100644 --- a/library/io/unix/load.factor +++ b/library/io/unix/load.factor @@ -1,7 +1,7 @@ USING: io kernel parser sequences ; -"/library/unix/types.factor" run-resource -"/library/unix/syscalls-" os ".factor" append3 run-resource +"/library/io/unix/types.factor" run-resource +"/library/io/unix/syscalls-" os ".factor" append3 run-resource [ "/library/io/unix/syscalls.factor" diff --git a/library/ui/hierarchy.factor b/library/ui/hierarchy.factor index cc9cefb084..c56d4cbb11 100644 --- a/library/ui/hierarchy.factor +++ b/library/ui/hierarchy.factor @@ -19,7 +19,7 @@ M: gadget ungraft* drop ; : ungraft ( gadget -- ) dup gadget-grafted? [ - dup [ ungraft* ] each-child + dup [ ungraft ] each-child dup ungraft* f over set-gadget-grafted? ] when drop ;