This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository legacy-imlib2.
View the commit online.
commit c952de144a00381ad8ed50f3b1cce5393da77b9d
Author: Kim Woelders <k...@woelders.dk>
AuthorDate: Fri Aug 30 08:41:18 2024 +0200
imlib2_view: Toggle anti-alias flag on 'a'
---
src/bin/imlib2_view.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/src/bin/imlib2_view.c b/src/bin/imlib2_view.c
index bf74518..87f4d51 100644
--- a/src/bin/imlib2_view.c
+++ b/src/bin/imlib2_view.c
@@ -780,6 +780,9 @@ main(int argc, char **argv)
{
default:
break;
+ case XK_a:
+ opt_aa_final = !opt_aa_final;
+ goto show_cur;
case XK_q:
case XK_Escape:
goto quit;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.