Fix transcript starting off scrolled up

This commit is contained in:
2014-04-19 01:43:28 -04:00
parent 2b79f66136
commit d69a0b11d0

View File

@@ -26,7 +26,7 @@ bool cScrollbar::isClickable(){
}
void cScrollbar::setPosition(long newPos) {
pos = minmax(0,max,pos);
pos = minmax(0,max,newPos);
}
void cScrollbar::setMaximum(long newMax) {