This is the mail archive of the guile-gtk@sources.redhat.com mailing list for the Guile project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

gtk-toggle-button-toggled problem


Hi

in guile-gtk branch of:

        gnome-guile-0.21pre2
and
	guile-1.7.0

the following signal leads to a 'loop for ever' problem (when the user clicks
the check-button):

	...
	(let ((chutte-cb (gtk-check-button-new-with-label "chutte ...")))
	  (gtk-table-attach table0 chutte-cb 2 3 2 3
			    '(fill) '(0)
			    0 0)
	  ...
	  (gtk-signal-connect chutte-cb "toggled"
			      (lambda ()
				(format #t "chutte toggled state: ~S~%"
					(gtk-toggle-button-toggled chutte-cb)
					;; (gtk-toggle-button-get-active chutte-cb)
					)))
	  ...)

david


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]