fix segfault with mouse selection. (thx anonymous)

This commit is contained in:
Aurélien Aptel 2011-06-09 14:27:07 +02:00
parent 3959a99293
commit cddbd6eee5
1 changed files with 1 additions and 1 deletions

2
st.c
View File

@ -615,7 +615,7 @@ bmotion(XEvent *e) {
if(oldey != sel.ey || oldex != sel.ex) {
int starty = MIN(oldey, sel.ey);
int endy = MAX(oldey, sel.ey);
drawregion(0, (starty > 0 ? starty : 0), term.col, (sel.ey < term.row ? endy+1 : term.row));
drawregion(0, (starty > 0 ? starty : 0), term.col, (endy < term.row ? endy+1 : term.row));
}
}
}