Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #41654

tkinter: invisible PanedWindow "sashes" on OS X

Date 2013-03-21 14:37 +0000
Subject tkinter: invisible PanedWindow "sashes" on OS X
From Arnaud Delobelle <arnodel@gmail.com>
Newsgroups comp.lang.python
Message-ID <mailman.3592.1363876639.2939.python-list@python.org> (permalink)

Show all headers | 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 | NextNext in thread | Find similar | Unroll thread


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