diff options
| author | Markus Teich <teichm@fs.tum.de> | 2016-11-23 00:28:25 +0100 | 
|---|---|---|
| committer | Markus Teich <teichm@fs.tum.de> | 2016-11-23 00:28:25 +0100 | 
| commit | 0ff0d9f7a7156a0e0b41d5b208ae5625e3a15dab (patch) | |
| tree | e26137851cab0f6752d7357be76013f3701c9937 | |
| parent | Fix resize with multiple monitors and portrait mode (diff) | |
| download | slock-0ff0d9f7a7156a0e0b41d5b208ae5625e3a15dab.tar.gz slock-0ff0d9f7a7156a0e0b41d5b208ae5625e3a15dab.tar.bz2 slock-0ff0d9f7a7156a0e0b41d5b208ae5625e3a15dab.tar.xz slock-0ff0d9f7a7156a0e0b41d5b208ae5625e3a15dab.tar.zst slock-0ff0d9f7a7156a0e0b41d5b208ae5625e3a15dab.zip | |
there can only be one window in the event
Diffstat (limited to '')
| -rw-r--r-- | slock.c | 1 | 
1 files changed, 1 insertions, 0 deletions
| @@ -209,6 +209,7 @@ readpw(Display *dpy, struct xrandr *rr, struct lock **locks, int nscreens,  						XResizeWindow(dpy, locks[screen]->win,  						              rre->width, rre->height);  					XClearWindow(dpy, locks[screen]->win); +					break;  				}  			}  		} else for (screen = 0; screen < nscreens; screen++) | 
