scrollbar whackiness better

This commit is contained in:
Adam D. Ruppe 2020-03-31 18:18:26 -04:00
parent 6d3a12213b
commit a90f344477
1 changed files with 2 additions and 2 deletions

View File

@ -1234,7 +1234,7 @@ class TerminalEmulator {
private int scrollbackWidth_; private int scrollbackWidth_;
int scrollbackWidth() { int scrollbackWidth() {
return screenWidth; return screenWidth;
//return scrollbackWidth_; // FIME //return scrollbackWidth_; // FIXME
} }
/* virtual */ void notifyScrollbackAdded() {} /* virtual */ void notifyScrollbackAdded() {}
@ -1310,7 +1310,7 @@ class TerminalEmulator {
else { else {
cls(); cls();
showScrollbackOnScreen(alternateScreen, currentScrollback, scrollbackReflow, currentScrollbackX); showScrollbackOnScreen(alternateScreen, currentScrollback, scrollbackReflow, currentScrollbackX);
notifyScrollbarPosition(currentScrollbackX, max - currentScrollback); notifyScrollbarPosition(currentScrollbackX, scrollbackLength - currentScrollback - screenHeight);
} }
} }