Removed call to clean on spellchecker

This commit is contained in:
Manuel Cortez 2021-04-26 09:44:11 -05:00
parent 3afff7eba2
commit 2e508a53a0

View File

@ -51,7 +51,6 @@ class createPostPresenter(base.basePresenter):
if hasattr(checker, "fixed_text"): if hasattr(checker, "fixed_text"):
self.send_message("set", control="text", value=checker.fixed_text) self.send_message("set", control="text", value=checker.fixed_text)
self.send_message("focus_control", control="text") self.send_message("focus_control", control="text")
checker.clean()
def add_attachments(self): def add_attachments(self):
a = attach.attachPresenter(session=self.session, view=views.attachDialog(), interactor=interactors.attachInteractor()) a = attach.attachPresenter(session=self.session, view=views.attachDialog(), interactor=interactors.attachInteractor())