This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository e16-epplets.
View the commit online.
commit 917c8f8b8487a3691adb14a5d7fa5cca5995c927
Author: Kim Woelders <k...@woelders.dk>
AuthorDate: Mon Sep 3 21:13:58 2012 +0200
api: Use InputOnly window for comms
---
api/epplet.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/api/epplet.c b/api/epplet.c
index 16e3e55..9689df1 100644
--- a/api/epplet.c
+++ b/api/epplet.c
@@ -1682,7 +1682,9 @@ CommsSetup(void)
if (!my_win)
{
- my_win = XCreateSimpleWindow(dd, root, -100, -100, 5, 5, 0, 0, 0);
+ my_win = XCreateWindow(dd, root, -10, -10, 1, 1, 0,
+ CopyFromParent, InputOnly, CopyFromParent,
+ 0, NULL);
XSelectInput(dd, my_win, StructureNotifyMask | SubstructureNotifyMask);
}
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.