mirror of
https://github.com/python/cpython.git
synced 2025-08-22 01:35:16 +00:00
Issue 3248: Allow placing ScrolledText in a PanedWindow.
This commit is contained in:
parent
358076f3e4
commit
e9859df798
2 changed files with 5 additions and 0 deletions
|
@ -41,3 +41,6 @@ class ScrolledText(Text):
|
|||
for m in methods:
|
||||
if m[0] != '_' and m != 'config' and m != 'configure':
|
||||
setattr(self, m, getattr(self.frame, m))
|
||||
|
||||
def __str__(self):
|
||||
return str(self.frame)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue