This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository e16.
View the commit online.
commit 90c4959f7e18395398de9180b056386d559bb303
Author: Kim Woelders <k...@woelders.dk>
AuthorDate: Tue Dec 12 05:24:43 2023 +0100
eesh: Simplify comms window creation
---
eesh/comms.c | 8 ++------
eesh/main.c | 1 -
2 files changed, 2 insertions(+), 7 deletions(-)
diff --git a/eesh/comms.c b/eesh/comms.c
index 81ed2d5f..fccfaa5f 100644
--- a/eesh/comms.c
+++ b/eesh/comms.c
@@ -38,12 +38,8 @@ CommsInit(void)
Window
CommsSetup(Window win __UNUSED__)
{
- XSetWindowAttributes attr;
-
- attr.override_redirect = False;
- my_win = XCreateWindow(disp, root_win, -100, -100, 5, 5, 0, 0, InputOnly,
- DefaultVisual(disp, DefaultScreen(disp)),
- CWOverrideRedirect, &attr);
+ my_win = XCreateWindow(disp, root_win, -10, -10, 1, 1, 0, 0,
+ InputOnly, CopyFromParent, 0, NULL);
return my_win;
}
diff --git a/eesh/main.c b/eesh/main.c
index 55ca2657..308468a0 100644
--- a/eesh/main.c
+++ b/eesh/main.c
@@ -24,7 +24,6 @@
#include <sys/select.h>
#include "E.h"
-/* Global vars */
Display *disp;
static char buf[10240];
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.