fixed bug in wxHtmlWindow: HistoryBack/Forward now correctly preserves last entry's scrolled position

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8426 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík 2000-09-26 21:54:29 +00:00
parent dc743689dd
commit bbda1088f7

View File

@ -365,6 +365,12 @@ bool wxHtmlWindow::HistoryBack()
if (m_HistoryPos < 1) return FALSE;
// store scroll position into history item:
int x, y;
ViewStart(&x, &y);
m_History[m_HistoryPos].SetPos(y);
// go to previous position:
m_HistoryPos--;
l = m_History[m_HistoryPos].GetPage();