mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
ImGui: fix logger not showing horizontal scrollbar when text clips
This commit is contained in:
parent
db2b42cb03
commit
197772e5f7
2
r5dev/thirdparty/imgui/misc/imgui_logger.cpp
vendored
2
r5dev/thirdparty/imgui/misc/imgui_logger.cpp
vendored
@ -811,7 +811,7 @@ void CTextLogger::Render()
|
||||
const ImVec2 textScreenPos = ImVec2(lineStartScreenPos.x, lineStartScreenPos.y);
|
||||
|
||||
const Line& line = m_Lines[lineNo];
|
||||
longest = TextDistanceToLineStart(Coordinates(lineNo, GetLineMaxColumn(lineNo)));
|
||||
longest = ImMax(TextDistanceToLineStart(Coordinates(lineNo, GetLineMaxColumn(lineNo))), longest);
|
||||
|
||||
Coordinates lineStartCoord(lineNo, 0);
|
||||
Coordinates lineEndCoord(lineNo, GetLineMaxColumn(lineNo));
|
||||
|
Loading…
x
Reference in New Issue
Block a user