summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorDylan Baker <dylan.c.baker@intel.com>2020-12-03 10:41:27 -0800
committerDylan Baker <dylan.c.baker@intel.com>2020-12-03 10:41:27 -0800
commiteaf61d8a6530beaa93983ea30710f5182ec9c4b3 (patch)
tree95753e981f333c998ace3e4e8663d4c14c66b768 /bin
parent751c242e865ca71536a0cb7cc95b0a45bbc5d958 (diff)
pick-ui: don't grab the mouse
It's super annoying
Diffstat (limited to 'bin')
-rwxr-xr-xbin/pick-ui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/pick-ui.py b/bin/pick-ui.py
index 3aea7719246..1980f118436 100755
--- a/bin/pick-ui.py
+++ b/bin/pick-ui.py
@@ -28,6 +28,6 @@ from pick.ui import UI, PALETTE
if __name__ == "__main__":
u = UI()
evl = urwid.AsyncioEventLoop(loop=asyncio.get_event_loop())
- loop = urwid.MainLoop(u.render(), PALETTE, event_loop=evl)
+ loop = urwid.MainLoop(u.render(), PALETTE, event_loop=evl, handle_mouse=False)
u.mainloop = loop
loop.run()