comparison client.c @ 232:98e9901b1dbb

disallow zoom on maximized clients
author Anselm R.Garbe <arg@10ksloc.org>
date Thu, 10 Aug 2006 10:16:12 +0200
parents b92bbc2487c9
children e5390f8e06b9
comparison
equal deleted inserted replaced
231:f7e87c894b5e 232:98e9901b1dbb
192 return; 192 return;
193 if(sel->proto & PROTODELWIN) 193 if(sel->proto & PROTODELWIN)
194 sendevent(sel->win, wmatom[WMProtocols], wmatom[WMDelete]); 194 sendevent(sel->win, wmatom[WMProtocols], wmatom[WMDelete]);
195 else 195 else
196 XKillClient(dpy, sel->win); 196 XKillClient(dpy, sel->win);
197 }
198
199 void
200 lower(Client *c)
201 {
202 XLowerWindow(dpy, c->title);
203 XLowerWindow(dpy, c->win);
204 } 197 }
205 198
206 void 199 void
207 manage(Window w, XWindowAttributes *wa) 200 manage(Window w, XWindowAttributes *wa)
208 { 201 {