Commit fde52a9b authored by Ulrich Sibiller's avatar Ulrich Sibiller

Screen.c: activate fallback to dix blanking

We have no hardware that could blank the screen for us. So let nxagentSaveScreen return False in some situations to let dix do the default action.
parent 567e700b
......@@ -551,7 +551,7 @@ static Bool nxagentSaveScreen(ScreenPtr pScreen, int what)
if (what == SCREEN_SAVER_OFF)
{
return True;
return False;
}
/*
......@@ -581,7 +581,7 @@ FIXME: Do we need to check the key grab if the
return True;
}
return True;
return False;
}
Bool nxagentCreateScreenResources(ScreenPtr pScreen)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment