paste text operation
(self)
| 55 | except: pass |
| 56 | |
| 57 | def paste_text(self): |
| 58 | """ paste text operation """ |
| 59 | try: self.widget.insert(self.widget.index('insert'), self.clipboard_get()) |
| 60 | except: pass |
| 61 | |
| 62 | def clear_all_text(self): |
| 63 | """ clears sll the text """ |