def __init__(self, *args, **kwargs):
     super().__init__(*args, **kwargs)
     self.scroll_into_view = True
     self.updates_xpos = True
     self.repeatable = True
     self.motion_required = True
     self.input_parser = InputParser(InputParser.AFTER_MOTION)
 def __init__(self, *args, **kwargs):
     super().__init__(*args, **kwargs)
     self.motion_required = False
     self.input_parser = InputParser(InputParser.IMMEDIATE)
 def __init__(self, *args, **kwargs):
     super().__init__(*args, **kwargs)
     self.scroll_into_view = True
     self.updates_xpos = True
     self.repeatable = True
     self.input_parser = InputParser(InputParser.IMMEDIATE)
Exemple #4
0
 def __init__(self, *args, **kwargs):
     super().__init__(*args, **kwargs)
     self.input_parser = InputParser(InputParser.IMMEDIATE)