bug fix: previous commit broke Zaphod mode in spawn()
This commit is contained in:
parent
b76d5d6722
commit
990bc8d6f2
2
util.c
2
util.c
|
@ -68,7 +68,7 @@ uicb_spawn(Display * disp,
|
||||||
if(!arg)
|
if(!arg)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if(XineramaIsActive(disp) && (tmp = getenv("DISPLAY")))
|
if(!XineramaIsActive(disp) && (tmp = getenv("DISPLAY")))
|
||||||
{
|
{
|
||||||
display = a_strdup(tmp);
|
display = a_strdup(tmp);
|
||||||
if((tmp = strrchr(display, '.')))
|
if((tmp = strrchr(display, '.')))
|
||||||
|
|
Loading…
Reference in New Issue