瀏覽代碼

Fixing y position of child menus.

master
phillbush 4 年之前
父節點
當前提交
8e799bb47d
共有 1 個文件被更改,包括 1 次插入3 次删除
  1. +1
    -3
      xmenu.c

+ 1
- 3
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;
}


Loading…
取消
儲存