Removed some debugging prints.

This commit is contained in:
Pietro Gagliardi 2014-02-16 18:06:45 -05:00
parent 622d7b1569
commit b8f7f4aa6e
1 changed files with 0 additions and 2 deletions

View File

@ -88,7 +88,6 @@ func (s *sysData) make(initText string, window *sysData) error {
ret <- ct.make()
}
s.widget = <-ret
println(s.widget)
if window == nil {
uitask <- func() {
fixed := gtk_fixed_new()
@ -157,7 +156,6 @@ if classTypes[s.ctype] == nil || classTypes[s.ctype].setText == nil { return nil
ret := make(chan struct{})
defer close(ret)
uitask <- func() {
println(s.ctype, x, y, width, height)
gtk_fixed_move(s.container, s.widget, x, y)
gtk_widget_set_size_request(s.widget, width, height)
ret <- struct{}{}