From: phillbush Date: Thu, 30 Jul 2020 20:24:58 +0000 (-0300) Subject: Fixing y position of child menus. X-Git-Url: http://git.subgeniuskitty.com/xmenu/.git/commitdiff_plain/8e799bb47ddc6dcb1bc601dfc0bc44bcba2a7948 Fixing y position of child menus. --- diff --git a/xmenu.c b/xmenu.c index abbf240..e66ce27 100644 --- a/xmenu.c +++ b/xmenu.c @@ -755,10 +755,8 @@ setupmenupos(struct Menu *menu) else if (menu->parent->x > menu->w + config.border_pixels + config.gap_pixels) menu->x = menu->parent->x - menu->w - config.border_pixels - config.gap_pixels; - if (mon.y + mon.h - (menu->caller->y + menu->parent->y) > height) + if (mon.y + mon.h - (menu->caller->y + menu->parent->y) >= height) menu->y = menu->caller->y + menu->parent->y; - else if (mon.y + mon.h - menu->parent->y > height) - menu->y = menu->parent->y; else if (mon.y + mon.h > height) menu->y = mon.y + mon.h - height; }