[Lldb-commits] [lldb] [lldb] Correctly restore the cursor column after resizing the statusline (PR #145823)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Thu Jun 26 08:30:34 PDT 2025
================
@@ -102,20 +103,36 @@ void Statusline::UpdateScrollWindow(ScrollWindowMode mode) {
const unsigned scroll_height =
(mode == DisableStatusline) ? m_terminal_height : m_terminal_height - 1;
+ CursorPosition cursor_position = m_debugger.GetIOHandlerCursorPosition();
----------------
JDevlieghere wrote:
I tried to do it before locking the output stream, but this is pretty cheap so I can move it down.
https://github.com/llvm/llvm-project/pull/145823
More information about the lldb-commits
mailing list