소스 검색

fix #16

master
phillbush 4 년 전
부모
커밋
ef667106e9
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      xmenu.c

+ 2
- 2
xmenu.c 파일 보기

@@ -628,12 +628,12 @@ setupmenupos(struct Menu *menu)
width = menu->w + config.border_pixels * 2;
height = menu->h + config.border_pixels * 2;
if (menu->parent == NULL) { /* if root menu, calculate in respect to cursor */
if (pflag || (config.posx > mon.x && mon.x + mon.w - config.posx >= width))
if (pflag || (config.posx >= mon.x && mon.x + mon.w - config.posx >= width))
menu->x = config.posx;
else if (config.posx > width)
menu->x = config.posx - width;

if (pflag || (config.posy > mon.y && mon.y + mon.h - config.posy >= height))
if (pflag || (config.posy >= mon.y && mon.y + mon.h - config.posy >= height))
menu->y = config.posy;
else if (mon.y + mon.h > height)
menu->y = mon.y + mon.h - height;


불러오는 중...
취소
저장