Browse Source

small fix of fix

master
Anselm R. Garbe 17 years ago
parent
commit
c67dbb28e4
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      client.c

+ 1
- 2
client.c View File

@ -365,9 +365,8 @@ updatetitle(Client *c) {
XGetWMName(dpy, c->win, &name);
if(!name.nitems)
return;
if(name.encoding == XA_STRING) {
if(name.encoding == XA_STRING)
strncpy(c->name, (char *)name.value, sizeof c->name - 1);
}
else {
if(XmbTextPropertyToTextList(dpy, &name, &list, &n) >= Success
&& n > 0 && *list)


Loading…
Cancel
Save