You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
extras/tk.jl currently uses an X11-specific hack to handle events. We need to use a more portable method of integrating Tcl/Tk's event loop with our own.
Post the Windows merge, add_fd_handler is no longer available, and we need to get rid of it to be cross-platform in any case.
julia> require("Winston/src/Plot.jl")
in init: add_fd_handler not defined
in init at /Users/viral/.julia/Tk/src/Tk.jl:51
in include_from_node1 at util.jl:244
in reload_path at util.jl:254
in require at util.jl:223
in include_from_node1 at util.jl:244
in reload_path at util.jl:254
in require at util.jl:223
at /Users/viral/.julia/Tk/src/Tk.jl:260
extras/tk.jl
currently uses an X11-specific hack to handle events. We need to use a more portable method of integrating Tcl/Tk's event loop with our own.We may need to use
Tcl_CreateEventSource
, as documented here: http://www.tcl.tk/man/tcl8.4/TclLib/Notifier.htmThis may require adding features like timers to our event loop, which will happen already with the libuv branch.
Issue moved from JuliaLang/julia#1473
The text was updated successfully, but these errors were encountered: