diff options
author | stsp | 2010-02-02 19:28:46 +0000 |
---|---|---|
committer | stsp | 2010-02-02 19:28:46 +0000 |
commit | 1617ae7c9f7259da782c0f829298490c9962ed41 (patch) | |
tree | af5f2779be017bc4d758e4c34cb69dba5f0a742f | |
parent | cf907fa95c4a6c1fa13ad717089fa5d0cb099350 (diff) | |
download | cwm-1617ae7c9f7259da782c0f829298490c9962ed41.tar.gz |
Honour program-specified window position in size hints when placing windows.
Makes XMMS windows appear as expected.
ok okan, oga
-rw-r--r-- | client.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $Id: client.c,v 1.73 2010/01/27 03:04:50 okan Exp $ + * $Id: client.c,v 1.74 2010/02/02 19:28:46 stsp Exp $ */ #include <sys/param.h> @@ -627,7 +627,7 @@ client_placecalc(struct client_ctx *cc) struct screen_ctx *sc = cc->sc; int xslack, yslack; - if (cc->size->flags & USPosition) { + if (cc->size->flags & (USPosition|PPosition)) { /* * Ignore XINERAMA screens, just make sure it's somewhere * in the virtual desktop. else it stops people putting xterms |