Gtk ComBox problem

Hi everybody.

I´m working with Gtk. I want to push! a GtkComboBox with a signal_connect function (:changed). The problem is that, when I use “set_gtk_property(cb, :active, 0)” as a example, the Julia session closes. If I erase the signal_connect function, the code runs without problem. I need the signal connect.

Help please.

Kelvyn B.

What Julia version?

With < v1.1 it was not allowed to change the UI in callbacks. One had to wrap that in Gtk.@sigatom, i.e.

Gtk.@sigatom set_gtk_property(cb, :active, 0)

With Julia v1.1 this should not happen anymore.

I´m with julia 1.1.

It works! Thanks.