wtf was that. of course it should be False!!!!
authorraster <raster@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Tue, 2 Feb 2010 09:06:14 +0000 (09:06 +0000)
committerraster <raster@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Tue, 2 Feb 2010 09:06:14 +0000 (09:06 +0000)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/ecore@45799 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/ecore_x/xlib/ecore_x_netwm.c

index 0161629..4ca18bf 100644 (file)
@@ -1515,7 +1515,7 @@ ecore_x_screen_is_composited(int screen)
    char buf[32];
 
    snprintf(buf, sizeof(buf), "_NET_WM_CM_S%i", screen);
-   if (atom == None) atom = XInternAtom(_ecore_x_disp, buf, True);
+   if (atom == None) atom = XInternAtom(_ecore_x_disp, buf, False);
    if (atom == None) return 0;
 
    win = XGetSelectionOwner(_ecore_x_disp, atom);
@@ -1530,7 +1530,7 @@ ecore_x_screen_is_composited_set(int screen, Ecore_X_Window win)
    char buf[32];
 
    snprintf(buf, sizeof(buf), "_NET_WM_CM_S%i", screen);
-   if (atom == None) atom = XInternAtom(_ecore_x_disp, buf, True);
+   if (atom == None) atom = XInternAtom(_ecore_x_disp, buf, False);
    if (atom == None) return;
    XSetSelectionOwner(_ecore_x_disp, atom, win, _ecore_x_event_last_time);
 }