Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #41654
| 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 | <arnodel@gmail.com> |
| 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 <arnodel@gmail.com> |
| To | Python <python-list@python.org> |
| 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 <python-list.python.org> |
| List-Unsubscribe | <http://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.3592.1363876639.2939.python-list@python.org> (permalink) |
| 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 |
Show key headers only | View raw
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
Back to comp.lang.python | Previous | Next — Next in thread | Find similar | Unroll thread
tkinter: invisible PanedWindow "sashes" on OS X Arnaud Delobelle <arnodel@gmail.com> - 2013-03-21 14:37 +0000
Re: tkinter: invisible PanedWindow "sashes" on OS X Christian Gollwitzer <auriocus@gmx.de> - 2013-03-21 19:42 +0100
Re: tkinter: invisible PanedWindow "sashes" on OS X Arnaud Delobelle <arnodel@gmail.com> - 2013-03-21 20:59 +0000
csiph-web