editors/IECCodeViewer.py
changeset 1262 7b9259945453
parent 1057 3837e165b3f9
child 1511 91538d0c242c
--- a/editors/IECCodeViewer.py	Fri Jun 14 11:45:56 2013 +0200
+++ b/editors/IECCodeViewer.py	Fri Jun 14 14:19:28 2013 +0200
@@ -8,6 +8,10 @@
         TextViewer.__del__(self)
         if getattr(self, "_OnClose"):
             self._OnClose(self)
-            
+    
+    def Paste(self):
+        if self.Controler is not None:
+            TextViewer.Paste(self)
+    
     def Search(self, criteria):
         return [((self.TagName, "body", 0),) + result for result in TestTextElement(self.Editor.GetText(), criteria)]
\ No newline at end of file