fixed vlist cursor

This commit is contained in:
Connor Lane Smith 2010-06-22 10:45:07 +01:00
parent 9a33a72c6a
commit bff1526d31
1 changed files with 1 additions and 1 deletions

View File

@ -472,7 +472,7 @@ kpress(XKeyEvent * e) {
calcoffsets(); calcoffsets();
break; break;
case XK_Left: 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])); while(cursor-- > 0 && !IS_UTF8_1ST_CHAR(text[cursor]));
break; break;
} }