From: Michael D. Lowis Date: Tue, 8 Nov 2016 20:24:39 +0000 (-0500) Subject: ignore left and right arrows for xpick for the time being X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=ba4754674c1708c848d471483128c738078591ed;p=projs%2Ftide.git ignore left and right arrows for xpick for the time being --- diff --git a/xpick.c b/xpick.c index 91b293b..610c123 100644 --- a/xpick.c +++ b/xpick.c @@ -183,6 +183,8 @@ static void mouse_input(MouseAct act, MouseBtn btn, int x, int y) { static void keyboard_input(uint32_t key) { switch (key) { + case KEY_LEFT: break; + case KEY_RIGHT: break; case KEY_UP: if (ChoiceIdx > 0) ChoiceIdx--; break;