[racket] Fwd: [racket-bug] all/14865: Instances of button% don't not respond to (stretchable-height #t) and [min-height 300].

From: Stephen De Gabrielle (spdegabrielle at gmail.com)
Date: Wed Dec 3 09:59:15 EST 2014

Is anyone else getting this bug?

On OS X buttons stretch horizontally, but not vertically

Cheers,
Stephen

Test
#lang racket/gui

;;; The top-level frame
(define frame
  (instantiate frame%
    ("Test")))

(new button%
     [label "Stretchy Button  :)"]
     [parent frame]
     (stretchable-width #t)
     (stretchable-height #t)
     [min-height 300]
     (callback
      (lambda (button event)
        (printf "doesnt stretch vertically:("))))

;;; Show the top-level frame.
(send frame show #t)

---------- Forwarded message ---------
From: <bugs at racket-lang.org>
Date: Mon, 1 Dec 2014 at 23:20
Subject: Re: [racket-bug] all/14865: Instances of button% don't not respond
to (stretchable-height #t) and [min-height 300].
To: <spdegabrielle at gmail.com>


Thank you very much for your problem report.
It has the internal identification `all/14865'.
You can check on the status of your problem report at
  http://bugs.racket-lang.org/query/?cmd=view&pr=14865

If you wish to provide further information regarding this problem
you can do so as a reply to this message.  (But please make sure
that your mailer replies to both "bugs" and "bug-notification".)
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.racket-lang.org/users/archive/attachments/20141203/47118922/attachment.html>

Posted on the users mailing list.