summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsabetts <sabetts>2002-01-24 21:30:11 +0000
committersabetts <sabetts>2002-01-24 21:30:11 +0000
commit66ef30a4b79636b748107e00be805d1885a88af8 (patch)
treef96d78a0c591d2cdcf0ba66ec322d306984bfbe1
parentd00e7292850d6b6913251a370801be740adba8e0 (diff)
downloadratpoison-66ef30a4b79636b748107e00be805d1885a88af8.zip
(init_screen): create the help window with a 0 border
width.
-rw-r--r--ChangeLog3
-rw-r--r--src/main.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 5485c6a..92ac26b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2002-01-24 shawn <sabetts@vcn.bc.ca>
+ * src/main.c (init_screen): create the help window with a 0 border
+ width.
+
* src/actions.c (find_alias_index): new function
(cmd_alias): When an alias is already in the alias list, replace
it with the new alias.
diff --git a/src/main.c b/src/main.c
index 165aa1f..5a761da 100644
--- a/src/main.c
+++ b/src/main.c
@@ -638,7 +638,7 @@ init_screen (screen_info *s, int screen_num)
/* Create the help window */
s->help_window = XCreateSimpleWindow (dpy, s->root, 0, 0, s->root_attr.width,
- s->root_attr.height, 1, s->fg_color, s->bg_color);
+ s->root_attr.height, 0, s->fg_color, s->bg_color);
XSelectInput (dpy, s->help_window, KeyPressMask);
XSync (dpy, 0);