Improve scrollback

Scrollback now scrolls back pixel perfect to the exact line in view before resize.
This commit is contained in:
Kawe Mazidjatari 2022-06-20 11:20:02 +02:00
parent 28f0df81c6
commit 43b73dc717

View File

@ -239,7 +239,7 @@ void CConsole::BasePanel(void)
if (m_nScrollBack > 0)
{
ImGui::SetScrollY(ImGui::GetScrollY() - m_nScrollBack * ImGui::GetTextLineHeightWithSpacing() - m_nScrollBack - 90);
ImGui::SetScrollY(ImGui::GetScrollY() - m_nScrollBack * ImGui::GetFont()->CalcTextSizeA(ImGui::GetFontSize(), FLT_MAX, -1.0f, "#", nullptr, nullptr).y);
m_nScrollBack = 0;
}