diff options
| -rw-r--r-- | st.c | 4 | 
1 files changed, 2 insertions, 2 deletions
@@ -3136,8 +3136,8 @@ xinit(void) {  		| ButtonMotionMask | ButtonPressMask | ButtonReleaseMask;  	xw.attrs.colormap = xw.cmap; -	parent = opt_embed ? strtol(opt_embed, NULL, 0) : \ -			XRootWindow(xw.dpy, xw.scr); +	if (!(opt_embed && (parent = strtol(opt_embed, NULL, 0)))) +		parent = XRootWindow(xw.dpy, xw.scr);  	xw.win = XCreateWindow(xw.dpy, parent, xw.l, xw.t,  			xw.w, xw.h, 0, XDefaultDepth(xw.dpy, xw.scr), InputOutput,  			xw.vis, CWBackPixel | CWBorderPixel | CWBitGravity  | 
