diff options
author | Aaron Plattner <aplattner@nvidia.com> | 2006-12-05 13:44:05 -0800 |
---|---|---|
committer | Aaron Plattner <aplattner@nvidia.com> | 2006-12-05 13:44:05 -0800 |
commit | 724f9cb578086e8483a2d0636dd6eb05d664d31c (patch) | |
tree | eee6ed536e89fa20aacaf7b6ff3427608b23bb28 /composite/compext.c | |
parent | 3690de9b1b0902d395bc7d071fc05ebc8f75be2b (diff) |
Bug #9219: Use pWin->viewable instead of pWin->realized to catch InputOnly windows too.
Diffstat (limited to 'composite/compext.c')
-rw-r--r-- | composite/compext.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/composite/compext.c b/composite/compext.c index ec5e1fab9..13936fa18 100644 --- a/composite/compext.c +++ b/composite/compext.c @@ -270,7 +270,7 @@ ProcCompositeNameWindowPixmap (ClientPtr client) return BadWindow; } - if (!pWin->realized) + if (!pWin->viewable) return BadMatch; LEGAL_NEW_RESOURCE (stuff->pixmap, client); |