소스 검색

fixed vlist cursor

master
Connor Lane Smith 14 년 전
부모
커밋
bff1526d31
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      dmenu.c

+ 1
- 1
dmenu.c 파일 보기

@@ -472,7 +472,7 @@ kpress(XKeyEvent * e) {
calcoffsets();
break;
case XK_Left:
if(cursor > 0 && (!sel || !sel->left)) {
if(cursor > 0 && (!sel || !sel->left || lines > 0)) {
while(cursor-- > 0 && !IS_UTF8_1ST_CHAR(text[cursor]));
break;
}


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