# HG changeset patch # User Björn Ricks # Date 1365669267 -7200 # Node ID 70e4f59f991c2999d71421291f9017598e971ac3 # Parent fb412892efb5c90742b50a7e43503aaa5e36905b Ignore mouse events for the moment diff -r fb412892efb5 -r 70e4f59f991c getan/view.py --- a/getan/view.py Thu Apr 11 10:23:41 2013 +0200 +++ b/getan/view.py Thu Apr 11 10:34:27 2013 +0200 @@ -328,6 +328,10 @@ def keypress(self, size, key): self.controller.state.keypress(size, key) + def mouse_event(self, size, event, button, col, row, focus): + #TODO currently ignore mouse events + return True + def update_entries(self, entries): self.entr_list.set_rows(entries)