diff options
author | okan | 2015-11-09 20:03:29 +0000 |
---|---|---|
committer | okan | 2015-11-09 20:03:29 +0000 |
commit | cce06135af44660039026ea785a5ffdbfc277ea9 (patch) | |
tree | 428deb257ef67f9fa4e88add56ad0009f3da6ddf /menu.c | |
parent | 337fd02962f9d55347c18b20876f44d2600787ee (diff) | |
download | cwm-cce06135af44660039026ea785a5ffdbfc277ea9.tar.gz |
Extend region to include both view and work areas; switch to
region_find() which no longer needs to recalculate gap each time
a client (or menu) is created or altered. If no RandR, fall back
to display dimensions while building regions instead of during
execution.
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -16,7 +16,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: menu.c,v 1.87 2015/07/12 14:21:09 okan Exp $ + * $OpenBSD: menu.c,v 1.88 2015/11/09 20:03:29 okan Exp $ */ #include <sys/types.h> @@ -331,6 +331,7 @@ static void menu_draw(struct menu_ctx *mc, struct menu_q *menuq, struct menu_q *resultq) { struct screen_ctx *sc = mc->sc; + struct region_ctx *rc; struct menu *mi; struct geom area; int n, xsave, ysave; @@ -371,7 +372,8 @@ menu_draw(struct menu_ctx *mc, struct menu_q *menuq, struct menu_q *resultq) mc->num++; } - area = screen_area(sc, mc->geom.x, mc->geom.y, CWM_GAP); + rc = region_find(sc, mc->geom.x, mc->geom.y); + area = rc->work; area.w += area.x - Conf.bwidth * 2; area.h += area.y - Conf.bwidth * 2; |