ajwillia-ms pushed a commit to branch master. http://git.enlightenment.org/apps/equate.git/commit/?id=703693f37d0c01385bfac982dab270441f45cda5
commit 703693f37d0c01385bfac982dab270441f45cda5 Author: Andy Williams <[email protected]> Date: Sun Nov 9 18:57:36 2014 +0000 Also listen for equals key for finishing calculation and escape for cancelling --- src/main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.c b/src/main.c index 250e077..d5ef992 100644 --- a/src/main.c +++ b/src/main.c @@ -43,7 +43,9 @@ static const struct {"slash", OP_DIV}, {"KP_Enter", OP_EQU}, {"Return", OP_EQU}, + {"equal", OP_EQU}, {"BackSpace", OP_CLR}, + {"Escape", OP_CLR}, {"period", OP_DEC}, {"KP_Decimal", OP_DEC}, {"comma", OP_DEC}, --
