Open Martmists-GH opened 6 years ago
using the following code (with mouse_support=True
) still does not seem to work:
@kb.add(Keys.ScrollUp)
def sup(_):
self.out_window._scroll_up() # pylint: disable=protected-access
@kb.add(Keys.ScrollDown)
def sdown(_):
self.out_window._scroll_down() # pylint: disable=protected-access
I'm writing an application with a BufferControl as log, and TextArea for input. I would like to redirect scrolling to scroll the buffer, but keep the input window in focus. How would you recommend I tackle this issue?
The docs say nothing about mouse-input in the keybinds section, so I'm wondering what to use as buttons.