likely fix for bug on mailing list that Matthias reported

("drracket fails to start up properly" Tue, Jul 26, 2011 at 2:12 PM)

  et fails to start up properly
This commit is contained in:
Robby Findler 2011-07-26 21:02:19 -05:00
parent 1e4c9b4ec3
commit 344168690e

View File

@ -42,8 +42,10 @@
toolbar-buttons)
(set! toolbar-buttons bs)
(send (get-frame) register-toolbar-buttons toolbar-buttons)
(send (send (get-frame) get-toolbar-button-panel) change-children
(λ (l) toolbar-buttons)))
(send (get-frame) when-initialized
(λ ()
(send (send (get-frame) get-toolbar-button-panel) change-children
(λ (l) toolbar-buttons)))))
(super-new)))
(define frame<%> (interface ()))