documentation and simplify uicb_settrans
This commit is contained in:
parent
59f6cbf2f5
commit
cf3135b6cf
13
client.c
13
client.c
|
@ -105,9 +105,9 @@ grabbuttons(Client * c, Bool focused, KeySym modkey, unsigned int numlockmask)
|
|||
}
|
||||
}
|
||||
|
||||
/** XXX: No idea
|
||||
/** Check if client supports protocol WM_DELETE_WINDOW
|
||||
* \param c the client
|
||||
* \return True if atom has WM_DELETE_WINDOW
|
||||
* \return True if client has WM_DELETE_WINDOW
|
||||
*/
|
||||
static Bool
|
||||
isprotodel(Client * c)
|
||||
|
@ -126,7 +126,7 @@ isprotodel(Client * c)
|
|||
return ret;
|
||||
}
|
||||
|
||||
/** XXX: No idea
|
||||
/** Set client WM_STATE property
|
||||
* \param c the client
|
||||
* \param state no idea
|
||||
*/
|
||||
|
@ -161,7 +161,6 @@ setclienttrans(Client *c, double opacity)
|
|||
|
||||
XSync(c->display, False);
|
||||
}
|
||||
/* extern */
|
||||
|
||||
/** Attach client to the beginning of the clients stack
|
||||
* \param c the client
|
||||
|
@ -630,9 +629,7 @@ uicb_settrans(Display *disp __attribute__ ((unused)),
|
|||
if(!sel)
|
||||
return;
|
||||
|
||||
if(arg && sscanf(arg, "%lf", &delta))
|
||||
{
|
||||
if(arg[0] == '+' || arg[0] == '-')
|
||||
if(arg && sscanf(arg, "%lf", &delta) && (arg[0] == '+' || arg[0] == '-'))
|
||||
{
|
||||
XGetWindowProperty(sel->display, sel->win, XInternAtom(sel->display, "_NET_WM_WINDOW_OPACITY", False),
|
||||
0L, 1L, False, XA_CARDINAL, &actual, &format, &n, &left,
|
||||
|
@ -649,8 +646,6 @@ uicb_settrans(Display *disp __attribute__ ((unused)),
|
|||
delta += 100.0;
|
||||
set_prop = 1;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
if(delta <= 0.0)
|
||||
|
|
Loading…
Reference in New Issue