about summary refs log tree commit diff
path: root/calmwm.c
diff options
context:
space:
mode:
authorokan <okan>2012-05-16 01:17:14 +0000
committerokan <okan>2012-05-16 01:17:14 +0000
commit490ef6a7df81e768730d5701959dde154b8916a5 (patch)
tree3663a36146cc0ca7f78f113e065236916dfb4093 /calmwm.c
parentb4d582c6ef5ffa5030f3b376b7bbbca177c1bee6 (diff)
downloadcwm-490ef6a7df81e768730d5701959dde154b8916a5.tar.gz
cwm-490ef6a7df81e768730d5701959dde154b8916a5.tar.xz
cwm-490ef6a7df81e768730d5701959dde154b8916a5.zip
instead of using the menu window for _NET_SUPPORTING_WM_CHECK, create a
dummy one to use instead; allows us to not have to wait for menu_init(),
so re-shuffle _NET_SUPPORTED slightly.

ok sthen@
Diffstat (limited to 'calmwm.c')
-rw-r--r--calmwm.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/calmwm.c b/calmwm.c
index 9d91084..2a52f6a 100644
--- a/calmwm.c
+++ b/calmwm.c
@@ -163,6 +163,9 @@ x_setupscreen(struct screen_ctx *sc, u_int which)
 	sc->which = which;
 	sc->rootwin = RootWindow(X_Dpy, sc->which);
 
+	xu_ewmh_net_supported(sc);
+	xu_ewmh_net_supported_wm_check(sc);
+
 	conf_gap(&Conf, sc);
 	screen_update_geometry(sc, DisplayWidth(X_Dpy, sc->which),
 	    DisplayHeight(X_Dpy, sc->which));
@@ -177,8 +180,6 @@ x_setupscreen(struct screen_ctx *sc, u_int which)
 	/* Initialize menu window. */
 	menu_init(sc);
 
-	xu_setwmname(sc);
-
 	rootattr.cursor = Cursor_normal;
 	rootattr.event_mask = CHILDMASK|PropertyChangeMask|EnterWindowMask|
 	    LeaveWindowMask|ColormapChangeMask|BUTTONMASK;