defn vars at the top of funcs
This commit is contained in:
parent
cd1694cd1c
commit
d33dce4827
1 changed files with 2 additions and 1 deletions
|
@ -423,13 +423,14 @@ void screen_show_desktop(gboolean show)
|
|||
|
||||
void screen_install_colormap(Client *client, gboolean install)
|
||||
{
|
||||
XWindowAttributes wa;
|
||||
|
||||
if (client == NULL) {
|
||||
if (install)
|
||||
XInstallColormap(ob_display, render_colormap);
|
||||
else
|
||||
XUninstallColormap(ob_display, render_colormap);
|
||||
} else {
|
||||
XWindowAttributes wa;
|
||||
if (XGetWindowAttributes(ob_display, client->window, &wa) &&
|
||||
wa.colormap != None) {
|
||||
if (install)
|
||||
|
|
Loading…
Reference in a new issue