aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/libdraw/x11-init.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/libdraw/x11-init.c b/src/libdraw/x11-init.c
index 085082df..6f87b412 100644
--- a/src/libdraw/x11-init.c
+++ b/src/libdraw/x11-init.c
@@ -155,6 +155,7 @@ xattach(char *label)
XTextProperty name;
XVisualInfo xvi;
XWindow xrootwin;
+ XWindowAttributes wattr;
XWMHints hint;
/*
@@ -303,6 +304,14 @@ xattach(char *label)
&attr /* attributes (the above aren't?!) */
);
+ if(!XGetWindowAttributes(_x.display, _x.drawable, &wattr))
+ fprint(2, "XGetWindowAttributes failed\n");
+ else if(wattr.width && wattr.height){
+ r.max.x = wattr.width;
+ r.max.y = wattr.height;
+ if(0) fprint(2, "new rect %dx%d\n", r.max.x, r.max.y);
+ }
+
/*
* Label and other properties required by ICCCCM.
*/