Browse Source

Fix scroll to last line problem after main window resize

Fix #9123, close #9265
pull/9276/head
Scott Sumner 4 years ago committed by Don HO
parent
commit
7aafa2e8fe
No known key found for this signature in database
GPG Key ID: 6C429F1D8D84F46E
  1. 1
      PowerEditor/src/ScitillaComponent/ScintillaEditView.cpp

1
PowerEditor/src/ScitillaComponent/ScintillaEditView.cpp

@ -3347,6 +3347,7 @@ void ScintillaEditView::scrollPosToCenter(size_t pos)
middleLine = lastVisibleDocLine - nbLine/2;
int nbLines2scroll = line - middleLine;
scroll(0, nbLines2scroll);
execute(SCI_ENSUREVISIBLEENFORCEPOLICY, line);
}
void ScintillaEditView::hideLines()

Loading…
Cancel
Save