예제 #1
0
파일: goroutines.go 프로젝트: alimy/gotk3
func LabelSetTextIdle(label *gtk.Label, text string) bool {
	label.SetText(text)

	// Returning false here is unnecessary, as anything but returning true
	// will remove the function from being called by the GTK main loop.
	return false
}