summaryrefslogtreecommitdiff
path: root/src/actions.c
diff options
context:
space:
mode:
authorsabetts <sabetts>2002-01-24 22:22:57 +0000
committersabetts <sabetts>2002-01-24 22:22:57 +0000
commit80d32867eab4d95a84ee1ff69852eaea933757ad (patch)
tree896720468033a1b397a3fc9ac5fa0f8b861815ea /src/actions.c
parent358f741058879d91b501df1d8eb336df6897c55a (diff)
downloadratpoison-80d32867eab4d95a84ee1ff69852eaea933757ad.zip
* src/actions.c (cmd_defbgcolor): don't set the background color for key_window.
(cmd_deffgcolor): don't set the foreground color for key_window.
Diffstat (limited to 'src/actions.c')
-rw-r--r--src/actions.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/actions.c b/src/actions.c
index db73111..b7f7a19 100644
--- a/src/actions.c
+++ b/src/actions.c
@@ -2028,7 +2028,6 @@ cmd_deffgcolor (int interactive, void *data)
screens[i].fg_color = color.pixel;
update_gc (&screens[i]);
XSetWindowBorder (dpy, screens[i].bar_window, color.pixel);
- XSetWindowBorder (dpy, screens[i].key_window, color.pixel);
XSetWindowBorder (dpy, screens[i].input_window, color.pixel);
XSetWindowBorder (dpy, screens[i].frame_window, color.pixel);
XSetWindowBorder (dpy, screens[i].help_window, color.pixel);
@@ -2060,7 +2059,6 @@ cmd_defbgcolor (int interactive, void *data)
screens[i].bg_color = color.pixel;
update_gc (&screens[i]);
XSetWindowBackground (dpy, screens[i].bar_window, color.pixel);
- XSetWindowBackground (dpy, screens[i].key_window, color.pixel);
XSetWindowBackground (dpy, screens[i].input_window, color.pixel);
XSetWindowBackground (dpy, screens[i].frame_window, color.pixel);
XSetWindowBackground (dpy, screens[i].help_window, color.pixel);