comparison getan/controller.py @ 563:5ec211c172ed

Removed the filter_input step in the processing of states. As far as I see it is not used anywhere.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Tue, 22 Sep 2020 17:30:02 +0200
parents 199b3e3657aa
children
comparison
equal deleted inserted replaced
562:5fd64fde95a8 563:5ec211c172ed
61 def input_filter(self, input, raw_input): 61 def input_filter(self, input, raw_input):
62 if 'window resize' in input: 62 if 'window resize' in input:
63 self.loop.screen_size = None 63 self.loop.screen_size = None
64 self.loop.draw_screen() 64 self.loop.draw_screen()
65 else: 65 else:
66 input = self.state.input_filter(input, raw_input)
67 self.loop.process_input(input) 66 self.loop.process_input(input)
68 self.state.handle_input(input) 67 self.state.handle_input(input)
69 68
70 def load_projects(self): 69 def load_projects(self):
71 projects = self.backend.load_projects() 70 projects = self.backend.load_projects()
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)