=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/popup.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- src/usr.bin/tmux/popup.c 2020/04/01 09:05:27 1.6 +++ src/usr.bin/tmux/popup.c 2020/04/07 13:33:00 1.7 @@ -1,4 +1,4 @@ -/* $OpenBSD: popup.c,v 1.6 2020/04/01 09:05:27 nicm Exp $ */ +/* $OpenBSD: popup.c,v 1.7 2020/04/07 13:33:00 nicm Exp $ */ /* * Copyright (c) 2020 Nicholas Marriott @@ -200,9 +200,9 @@ pd->dy = m->y - pd->py; server_redraw_client(c); } else if (pd->dragging == SIZE) { - if (m->x < pd->px + 2) + if (m->x < pd->px + 3) return; - if (m->y < pd->py + 2) + if (m->y < pd->py + 3) return; pd->sx = m->x - pd->px; pd->sy = m->y - pd->py;