[issue5163] tkinter.scrolledtext: new text is hidden after using insert()

2009-02-21 Thread Guilherme Polo
Guilherme Polo added the comment: In this case I'm closing it. -- resolution: -> rejected status: open -> closed ___ Python tracker ___ _

[issue5163] tkinter.scrolledtext: new text is hidden after using insert()

2009-02-20 Thread David Schultz
David Schultz added the comment: Just an ignorance issue, I supposed. I didn't realize that it was that simple. Still a novice at all of the methods available. In that case, the only advantage is in case you don't want to always manually set it to the end. No good reason to change it oth

[issue5163] tkinter.scrolledtext: new text is hidden after using insert()

2009-02-20 Thread Guilherme Polo
Guilherme Polo added the comment: Do you mean something like this: import Tkinter def insert(): text.insert('end', 'buh\n') text.see('end') text.after(100, insert) text = Tkinter.Text() text.pack(expand=True, fill='both', side='left') vbar = Tkinter.Scrollbar(orient='vertical', co

[issue5163] tkinter.scrolledtext: new text is hidden after using insert()

2009-02-05 Thread David Schultz
New submission from David Schultz : I've added a "keep at bottom" option to the scrolledtext class. This way, if a user wants to always see the text added via "insert()", it will be visible. -- components: Tkinter messages: 81248 nosy: ringhome severity: normal status: open title: tki