Revert "select tab with X ClientMessage event" - ttabbed - Simple tabbing application for X11.
       
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit b46a3a278856bb33dc299d11d0be1b01d04df39c
 (DIR) parent 34baef933d0bba6dad20e1b9f24878b63756e443
 (HTM) Author: Christoph Lohmann <20h@r-36.net>
       Date:   Sun,  1 Dec 2013 20:03:16 +0100
       
       Revert "select tab with X ClientMessage event"
       
       This reverts commit 34baef933d0bba6dad20e1b9f24878b63756e443.
       
       Diffstat:
         tabbed.c                            |       9 +++------
       
       1 file changed, 3 insertions(+), 6 deletions(-)
       ---
 (DIR) diff --git 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 */
        
        ttypedef 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;