mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Don't append newlines on obtained text
Newlines are added through the SDK, and the CTextLogger class has been modified to insert a newline when in encounters a newline character.
This commit is contained in:
parent
a534ef1e3c
commit
3e2c395584
3
r5dev/thirdparty/imgui/src/imgui_logger.cpp
vendored
3
r5dev/thirdparty/imgui/src/imgui_logger.cpp
vendored
@ -76,7 +76,6 @@ std::string CTextLogger::GetText(const Coordinates & aStart, const Coordinates &
|
||||
{
|
||||
istart = 0;
|
||||
++lstart;
|
||||
result += '\n';
|
||||
}
|
||||
}
|
||||
|
||||
@ -1075,7 +1074,7 @@ void CTextLogger::MoveDown(int aAmount, bool aSelect)
|
||||
assert(m_State.m_CursorPosition.m_nColumn >= 0);
|
||||
Coordinates oldPos = m_State.m_CursorPosition;
|
||||
|
||||
m_State.m_CursorPosition.m_nLine = std::max(0, std::min((int)m_Lines.size() - 1, m_State.m_CursorPosition.m_nLine + aAmount));
|
||||
m_State.m_CursorPosition.m_nLine = std::max(0, std::min(static_cast<int>(m_Lines.size() - 1), m_State.m_CursorPosition.m_nLine + aAmount));
|
||||
|
||||
if (m_State.m_CursorPosition != oldPos)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user