collapse lines

This commit is contained in:
okan 2013-07-15 23:51:59 +00:00
parent 4119b5c065
commit 4ef96a2772
3 changed files with 6 additions and 10 deletions

View File

@ -840,8 +840,7 @@ client_getmwmhints(struct client_ctx *cc)
{
struct mwm_hints *mwmh;
if (xu_getprop(cc->win,
cwmh[_MOTIF_WM_HINTS], cwmh[_MOTIF_WM_HINTS],
if (xu_getprop(cc->win, cwmh[_MOTIF_WM_HINTS], cwmh[_MOTIF_WM_HINTS],
PROP_MWM_HINTS_ELEMENTS, (u_char **)&mwmh) == MWM_NUMHINTS)
if (mwmh->flags & MWM_HINTS_DECORATIONS &&
!(mwmh->decorations & MWM_DECOR_ALL) &&

View File

@ -348,22 +348,20 @@ xev_handle_clientmessage(XEvent *ee)
if ((cc = client_find(e->window)) == NULL)
return;
if (e->message_type == cwmh[WM_CHANGE_STATE] &&
e->format == 32 && e->data.l[0] == IconicState)
if (e->message_type == cwmh[WM_CHANGE_STATE] && e->format == 32 &&
e->data.l[0] == IconicState)
client_hide(cc);
if (e->message_type == ewmh[_NET_CLOSE_WINDOW])
client_send_delete(cc);
if (e->message_type == ewmh[_NET_ACTIVE_WINDOW] &&
e->format == 32) {
if (e->message_type == ewmh[_NET_ACTIVE_WINDOW] && e->format == 32) {
old_cc = client_current();
if (old_cc)
client_ptrsave(old_cc);
client_ptrwarp(cc);
}
if (e->message_type == ewmh[_NET_WM_STATE] &&
e->format == 32)
if (e->message_type == ewmh[_NET_WM_STATE] && e->format == 32)
xu_ewmh_handle_net_wm_state_msg(cc,
e->data.l[0], e->data.l[1], e->data.l[2]);
}

View File

@ -177,8 +177,7 @@ xu_set_wm_state(Window win, int state)
dat[0] = state;
dat[1] = None;
XChangeProperty(X_Dpy, win,
cwmh[WM_STATE], cwmh[WM_STATE], 32,
XChangeProperty(X_Dpy, win, cwmh[WM_STATE], cwmh[WM_STATE], 32,
PropModeReplace, (unsigned char *)dat, 2);
}