diff -r 46425f3248b7 -r 7b9259945453 editors/IECCodeViewer.py --- 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