Removed TODO about returning container before connecting signals in sysdata_unix.go; nothing will actually be sent until we show the widgets anyway.

This commit is contained in:
Pietro Gagliardi 2014-04-27 13:48:47 -04:00
parent 6a2fb35d60
commit e30646ed59
1 changed files with 0 additions and 1 deletions

View File

@ -126,7 +126,6 @@ func (s *sysData) make(window *sysData) error {
uitask <- func() {
fixed := gtkNewWindowLayout()
gtk_container_add(s.widget, fixed)
// TODO return the container before assigning the signals?
for signame, sigfunc := range ct.signals {
g_signal_connect(s.widget, signame, sigfunc, s)
}