A first example: GUI controls - namespace problem
pauljurczak opened this issue · 1 comments
pauljurczak commented
using Gtk.ShortNames, GtkReactive
sl = slider(1:11)
win = Window("Testing") |> (bx = Box(:v))
push!(bx, sl)
showall(win)
produces UndefVarError: showall not defined
. This example works fine with using Gtk
added.