[racket-dev] gtk & too-small menu bar

From: Sam Tobin-Hochstadt (samth at ccs.neu.edu)
Date: Tue May 17 16:23:16 EDT 2011

On Tue, May 17, 2011 at 3:16 PM, Sam Tobin-Hochstadt <samth at ccs.neu.edu> wrote:
>  I'll see if I can come up with a smaller test case.

Here's a smaller test case for the problem/bug.  Since this doesn't
call any of the framework/drracket, I'm assuming it's an issue in the
GTK bindings.

#lang racket/gui

(define f (new frame% [label "Test"] [width 300] [height 300]))
(define m (new menu-bar% [parent f]))
(define m1 (new menu% [parent m] [label "Menu"]))
(define m2 (new menu% [parent m1] [label "Element"]))
(send f show #t)
-- 
sam th
samth at ccs.neu.edu



Posted on the dev mailing list.