Showing
1 changed file
with
2 additions
and
2 deletions
| ... | @@ -92,8 +92,8 @@ class Client(tk.Frame): | ... | @@ -92,8 +92,8 @@ class Client(tk.Frame): |
| 92 | 92 | ||
| 93 | def logging(self, text): | 93 | def logging(self, text): |
| 94 | self.log.config(state=tk.NORMAL) | 94 | self.log.config(state=tk.NORMAL) |
| 95 | - self.log.insert(tkinter.CURRENT, text) | 95 | + self.log.insert(tkinter.END, text) |
| 96 | - self.log.insert(tkinter.CURRENT, '\n') | 96 | + self.log.insert(tkinter.END, '\n') |
| 97 | self.log.config(state=tk.DISABLED) | 97 | self.log.config(state=tk.DISABLED) |
| 98 | 98 | ||
| 99 | 99 | ... | ... |
-
Please register or login to post a comment