Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!eu.feeder.erje.net!xlned.com!feeder7.xlned.com!news2.euro.net!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.028 X-Spam-Evidence: '*H*': 0.94; '*S*': 0.00; 'tkinter': 0.07; 'python': 0.09; 'doing?': 0.09; 'tia,': 0.09; 'resize': 0.16; '(or': 0.18; 'trying': 0.21; 'import': 0.21; 'example': 0.23; "i've": 0.23; '----------': 0.26; 'message-id:@mail.gmail.com': 0.27; "i'm": 0.29; 'docs': 0.33; 'handle': 0.33; 'to:addr:python-list': 0.33; 'received:google.com': 0.34; 'something': 0.35; 'there': 0.35; 'but': 0.36; 'received:74.125': 0.36; 'url:org': 0.36; 'subject:" ': 0.36; 'should': 0.36; 'skip:p 20': 0.36; 'two': 0.37; 'subject:: ': 0.38; 'to:addr:python.org': 0.39; 'called': 0.39; 'list,': 0.39; 'bottom': 0.60; 'to:name:python': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:date:message-id:subject:from:to :content-type; bh=yFt3AlTaGkWL5IOG/YopQ0jCIQzMugQGrAx2JvBBPHY=; b=RMHqXEdd/RZ5krkfTGrLrTxqsNx/c7oONApkGkI6E0MtjXAG8QpjzudD2B3FGlvgam dGkSxc/5n+NDRJkxF5qgoDUQWAcCqAxK9oNDxB0kKmWXhAHYl1CNkbJFqEQymXgJlJmE 4ganVPd87QtAeqTdpAj0lzvy7Xfui9ieKGFg4P8hBu10wl4NXjTSaVLM7fZvwDJ2qYRJ +73xs5IEfmqJy1rVsXDL+aP7bKcok4ZH3UwvTiZh3iH2IsdqG3EfYl95ZS7DFCUB+8r5 IlwpgaJNbZQlmDvrpxSwUPSqoWJVlRGHIPkfKTKDccSdNHk4L+2g8L0+MRh9IJSx6UIX oktA== MIME-Version: 1.0 X-Received: by 10.15.21.4 with SMTP id c4mr43556692eeu.34.1363876632396; Thu, 21 Mar 2013 07:37:12 -0700 (PDT) Date: Thu, 21 Mar 2013 14:37:12 +0000 Subject: tkinter: invisible PanedWindow "sashes" on OS X From: Arnaud Delobelle To: Python Content-Type: text/plain; charset=UTF-8 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 29 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1363876639 news.xs4all.nl 6978 [2001:888:2000:d::a6]:54915 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:41654 Hi Python List, I'm trying to use PanedWindow on OS X (10.8.3). I've started with the effbot docs example (http://effbot.org/tkinterbook/panedwindow.htm), namely: ---------- from Tkinter import * m = PanedWindow(orient=VERTICAL) m.pack(fill=BOTH, expand=1) top = Label(m, text="top pane") m.add(top) bottom = Label(m, text="bottom pane") m.add(bottom) mainloop() ---------- I can see two panes alright, but no handle to resize them (or 'sash' as they seem to be called in tkinter). Is there something else that I should be doing? TIA, -- Arnaud