X-Git-Url: http://git.maemo.org/git/?p=monky;a=blobdiff_plain;f=src%2Fx11.c;h=ba65fcbbedd3b0f2b2c55cf2754d36c81f2070f5;hp=264ddd20a52b1913686c2712134c17b160a9131e;hb=d75e2db5ed3fc788fb8514121f67316ac3e5f29f;hpb=71980a732e7898c55c7561de70920d73b38f60e3 diff --git a/src/x11.c b/src/x11.c index 264ddd2..ba65fcb 100644 --- a/src/x11.c +++ b/src/x11.c @@ -197,7 +197,7 @@ void set_transparent_background(Window win, int alpha) } else { #endif /* USE_ARGB */ // pseudo transparency - + if (set_transparent) { Window parent = win; unsigned int i; @@ -226,7 +226,7 @@ static int get_argb_visual(Visual** visual, int *depth) { XVisualInfo visual_template; XVisualInfo *visual_list; int nxvisuals = 0, i; - + visual_template.screen = screen; visual_list = XGetVisualInfo (display, VisualScreenMask, &visual_template, &nxvisuals); @@ -277,11 +277,11 @@ void init_window(int own_window, int w, int h, int set_trans, int back_colour, if (own_window) { int depth = 0, flags; Visual *visual = NULL; - + if (!find_desktop_window(&window.root, &window.desktop)) { return; } - + #ifdef USE_ARGB if (use_argb_visual && get_argb_visual(&visual, &depth)) { have_argb_visual = 1; @@ -503,13 +503,13 @@ void init_window(int own_window, int w, int h, int set_trans, int back_colour, } /* Skip pager */ - if (TEST_HINT(window.hints, HINT_SKIP_PAGER)) { + if (TEST_HINT(window.hints, HINT_FULLSCREEN)) { /* fprintf(stderr, PACKAGE_NAME": hint - skip_pager\n"); fflush(stderr); */ xa = ATOM(_NET_WM_STATE); if (xa != None) { - Atom xa_prop = ATOM(_NET_WM_STATE_SKIP_PAGER); + Atom xa_prop = ATOM(_NET_WM_STATE_FULLSCREEN); XChangeProperty(display, window.window, xa, XA_ATOM, 32, PropModeAppend, (unsigned char *) &xa_prop, 1);