mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-18 22:06:01 +01:00
bug fix: previous commit broke Zaphod mode in spawn()
This commit is contained in:
parent
b76d5d6722
commit
990bc8d6f2
1 changed files with 1 additions and 1 deletions
2
util.c
2
util.c
|
@ -68,7 +68,7 @@ uicb_spawn(Display * disp,
|
|||
if(!arg)
|
||||
return;
|
||||
|
||||
if(XineramaIsActive(disp) && (tmp = getenv("DISPLAY")))
|
||||
if(!XineramaIsActive(disp) && (tmp = getenv("DISPLAY")))
|
||||
{
|
||||
display = a_strdup(tmp);
|
||||
if((tmp = strrchr(display, '.')))
|
||||
|
|
Loading…
Reference in a new issue