summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorDylan Baker <dylan.c.baker@intel.com>2020-12-01 13:06:04 -0800
committerDylan Baker <dylan.c.baker@intel.com>2021-01-06 09:56:52 -0800
commit9ed7adc0188f3baa906cd6b12d8b6e74f8c4accb (patch)
tree65f898e1664e672c6f5802aa73e4d74e20ed9fe1 /bin
parent96ceca33c1dd69a1feed13b0e19bfc38e6f7d979 (diff)
pick-ui: don't handle the mouse
It's annoying, since it prevents linux "midle click" copy-n-paste Reviewed-by: Eric Engestrom <eric@engestrom.ch> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7863>
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()