[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

[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:

[issue5030] Typo in class tkinter.filedialog.Directory prevents compilation

2009-01-21 Thread David Schultz
New submission from David Schultz : class tkinter.filedialog.Directory incorrectly derives from Dialog instead of _Dialog. Adding the "_" allows the code to compile and run as expected. This also explains why tkinter.filedialog.askdirectory() doesn't work. -- comp