summaryrefslogtreecommitdiff
path: root/src/buttons.c
diff options
context:
space:
mode:
authorMichael Jennings <mej@kainx.org>2000-09-18 00:13:07 +0000
committerMichael Jennings <mej@kainx.org>2000-09-18 00:13:07 +0000
commitf9645628636f8564d180759fb8b526c1a1e4550a (patch)
tree1a6a95e445cfa73b22e0407d8c84d7d9bfd19754 /src/buttons.c
parent7666c71c9bd93e12430409113857ac23e6c21c79 (diff)
downloadeterm-f9645628636f8564d180759fb8b526c1a1e4550a.tar.gz
Sun Sep 17 17:29:26 PDT 2000 Michael Jennings <mej@eterm.org>
Got rid of the useless backing_store option. SVN revision: 3520
Diffstat (limited to 'src/buttons.c')
-rw-r--r--src/buttons.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/buttons.c b/src/buttons.c
index 65b29ec..4eaee07 100644
--- a/src/buttons.c
+++ b/src/buttons.c
@@ -80,7 +80,6 @@ bbar_create(void)
xattr.border_pixel = BlackPixel(Xdisplay, Xscreen);
xattr.save_under = FALSE;
- xattr.backing_store = NotUseful;
xattr.override_redirect = TRUE;
xattr.colormap = cmap;
@@ -96,7 +95,7 @@ bbar_create(void)
gcvalue.font = bbar->font->fid;
bbar->win = XCreateWindow(Xdisplay, Xroot, bbar->x, bbar->y, bbar->w, bbar->h, 0, Xdepth, InputOutput, CopyFromParent,
- CWOverrideRedirect | CWSaveUnder | CWBackingStore | CWBorderPixel | CWColormap, &xattr);
+ CWOverrideRedirect | CWSaveUnder | CWBorderPixel | CWColormap, &xattr);
XDefineCursor(Xdisplay, bbar->win, cursor);
XSelectInput(Xdisplay, bbar->win, mask);
XStoreName(Xdisplay, bbar->win, "Eterm Button Bar");