freebsd-ports/security/openssh-askpass/files/patch-x11-ssh-askpass.c
Hiroki Sato 4fa48c015a Add obsolete window size hint information. This solved
a problem with i3 window manager which could make the
ssh-askpass window too small.

Suggested by:	Guilherme Salazar
Obtained from:	https://groups.google.com/forum/#!topic/mailing.openbsd.tech/MKSja1XZzOs
2016-11-06 21:19:33 +00:00

13 lines
523 B
C

--- x11-ssh-askpass.c.orig 2016-11-06 16:18:21.595954000 +0900
+++ x11-ssh-askpass.c 2016-11-06 16:20:39.207609000 +0900
@@ -764,6 +764,10 @@
d->sizeHints->flags = 0;
d->sizeHints->flags |= PPosition;
d->sizeHints->flags |= PSize;
+ d->sizeHints->x = d->w3.w.x;
+ d->sizeHints->y = d->w3.w.y;
+ d->sizeHints->width = d->w3.w.width;
+ d->sizeHints->height = d->w3.w.height;
d->sizeHints->min_width = d->w3.w.width;
d->sizeHints->min_height = d->w3.w.height;
d->sizeHints->flags |= PMinSize;