about summary refs log tree commit diff stats
diff options
context:
space:
mode:
author2013-12-01 20:03:16 +0100
committer2013-12-01 20:03:16 +0100
commitb46a3a278856bb33dc299d11d0be1b01d04df39c (patch)
tree1b2f4ee8041456f37a3ee50f398788ce3ba2019d
parent34baef933d0bba6dad20e1b9f24878b63756e443 (diff)
downloadtabbed-b46a3a278856bb33dc299d11d0be1b01d04df39c.tar.gz
-rw-r--r--tabbed.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/tabbed.c b/tabbed.c
index f07322a..3a6e7f9 100644
--- a/tabbed.c
+++ b/tabbed.c
@@ -48,7 +48,7 @@
 
 enum { ColFG, ColBG, ColLast };                         /* color */
 enum { WMProtocols, WMDelete, WMName, WMState, WMFullscreen,
-	XEmbed, WMSelectTab, WMLast };                      /* default atoms */
+	XEmbed, WMLast };                               /* default atoms */
 
 typedef union {
 	int i;
@@ -237,9 +237,6 @@ clientmessage(const XEvent *e) {
 	if(ev->message_type == wmatom[WMProtocols]
 			&& ev->data.l[0] == wmatom[WMDelete]) {
 		running = False;
-	} else if(ev->message_type == wmatom[WMSelectTab]) {
-		Arg a = {.i = ev->data.l[0]};
-		move(&a);
 	}
 }
 
@@ -895,8 +892,8 @@ setup(void) {
 	wmatom[XEmbed] = XInternAtom(dpy, "_XEMBED", False);
 	wmatom[WMName] = XInternAtom(dpy, "_NET_WM_NAME", False);
 	wmatom[WMState] = XInternAtom(dpy, "_NET_WM_STATE", False);
-	wmatom[WMFullscreen] = XInternAtom(dpy, "_NET_WM_STATE_FULLSCREEN", False);
-	wmatom[WMSelectTab] = XInternAtom(dpy, "_TABBED_SELECT_TAB", False);
+	wmatom[WMFullscreen] = XInternAtom(dpy, "_NET_WM_STATE_FULLSCREEN",
+			False);
 
 	/* init appearance */
 	wx = 0;