all repos — openbox @ 32390c6b6dceeb72e4e4ceb0e79ba4d8c8ede9a3

openbox fork - make it a bit more like ryudo

ignore errors when playing with application defined colormaps
Dana Jansens danakj@orodu.net
commit

32390c6b6dceeb72e4e4ceb0e79ba4d8c8ede9a3

parent

ea6d0e0d4d31d0d810fa752d04b702b3b599e3df

1 files changed, 2 insertions(+), 0 deletions(-)

jump to
M openbox/screen.copenbox/screen.c

@@ -487,10 +487,12 @@ XUninstallColormap(ob_display, render_colormap);

} else { if (XGetWindowAttributes(ob_display, client->window, &wa) && wa.colormap != None) { + xerror_set_ignore(TRUE); if (install) XInstallColormap(ob_display, wa.colormap); else XUninstallColormap(ob_display, wa.colormap); + xerror_set_ignore(FALSE); } } }