Skip to content
Snippets Groups Projects
Commit 5182407c authored by Daniel Brötzmann's avatar Daniel Brötzmann
Browse files

ConversationView: Remove reference to filter_func on destroy

parent 46f7b5ea
No related branches found
No related tags found
No related merge requests found
......@@ -123,6 +123,11 @@ def __init__(self, account, contact):
self._scroll_hint_row = ScrollHintRow(self._account)
self.add(self._scroll_hint_row)
self.connect('destroy', self._on_destroy)
def _on_destroy(self, *args):
self.set_filter_func(None)
app.check_finalize(self)
def lock(self) -> None:
self.locked = True
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment