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

2009-02-21 Thread Guilherme Polo
Guilherme Polo ggp...@gmail.com added the comment: In this case I'm closing it. -- resolution: - rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5163 ___

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

2009-02-20 Thread Guilherme Polo
Guilherme Polo ggp...@gmail.com 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 =

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

2009-02-20 Thread David Schultz
David Schultz ringh...@cox.net 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

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

2009-02-05 Thread David Schultz
New submission from David Schultz ringh...@cox.net: 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: