diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2019-02-24 14:05:06 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2019-02-24 14:05:06 -0800 |
commit | 24af373f14cc666285a46b7c8eb6540781c6f519 (patch) | |
tree | 2d969331c3e83752123baacc3e84688beb7afc49 | |
parent | 66ea3f5a4df0ade8bb95e1772102d98e875c2893 (diff) |
xlogo should not require hitting *both* q and Escape to quit
Fixes: https://gitlab.freedesktop.org/xorg/app/xlogo/issues/1
Introduced by commit 28ffd14fbae70a5e01cdcbe2cb9342d3c8816b76
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | app-defaults/XLogo | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app-defaults/XLogo b/app-defaults/XLogo index a70ff3c..6525c6d 100644 --- a/app-defaults/XLogo +++ b/app-defaults/XLogo @@ -1,4 +1,5 @@ XLogo*iconPixmap: xlogo32 XLogo*iconMask: xlogo32 XLogo*baseTranslations: #override \ -<Key>q,<Key>Escape: quit() +<Key>q: quit() \n\ +<Key>Escape: quit() |