This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author gpolo
Recipients alextrob, emmanuelito, gpolo, ronaldoussoren
Date 2009-01-02.14:13:08
SpamBayes Score 6.284505e-05
Marked as misclassified No
Message-id <1230905590.57.0.826748923427.issue2754@psf.upfronthosting.co.za>
In-reply-to
Content
I see some issues related to scrolling under macosx were fixed in tk
8.4.13, but I can't test them since I don't have a mac.

If scrolling doesn't work with the example below then I can just say the
problem is indeed with tk, but you could try upgrading it.

import Tkinter

root = Tkinter.Tk()

text = Tkinter.Text()
text.focus_set()
vbar = Tkinter.Scrollbar(orient='vertical', command=text.yview)
text.configure(yscrollcommand=vbar.set)

vbar.pack(side='right', fill='y')
text.pack(fill='both', expand=True)

for l in range(int(text['height']) + 10):
    text.insert('end', "x\n")

root.mainloop()
History
Date User Action Args
2009-01-02 14:13:10gpolosetrecipients: + gpolo, ronaldoussoren, alextrob, emmanuelito
2009-01-02 14:13:10gpolosetmessageid: <1230905590.57.0.826748923427.issue2754@psf.upfronthosting.co.za>
2009-01-02 14:13:10gpololinkissue2754 messages
2009-01-02 14:13:09gpolocreate