(in-package :clim-user)
;;; Application pane with only a ;;; WITH-OUTPUT-AS-GADGET form causes ;;; control stack overflow.
(define-application-frame woag () () (:panes (application :application :scroll-bars nil :display-function #'(lambda (frame pane) (declare (ignore frame)) ;; uncomment to avoid overflow ;;(format pane "Hello~%") ; @@@ (with-output-as-gadget (pane) (with-radio-box (:orientation :horizontal) "1" "2" "3"))) )))
(find-application-frame 'woag :left 900 :top 200)
Hey Paul,
sorry for a very late replay, I had a few bumps with personal life in the meantime.
I can reproduce the issue on the master branch, although I'm currently working on changing the drawing model in McCLIM, and in sheet-repaint-queue branch I can't reproduce the issue, so for now I'll work under the assumption that it was accidentally fixed.
Best regards, Daniel