summaryrefslogtreecommitdiff
path: root/src/buttons.c
diff options
context:
space:
mode:
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");