Skip to content

Commit 0e52fa2

Browse files
committed
[lldb] Avoid unnecessary statusline redraw in HandleProgressEvent
There's no need to call RedrawStatusline from HandleProgressEvent. The statusline gets redraw after handling all events, including progress events, in the default event handler loop. (cherry picked from commit 618e8b9)
1 parent 044feb8 commit 0e52fa2

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

lldb/source/Core/Debugger.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2212,8 +2212,6 @@ void Debugger::HandleProgressEvent(const lldb::EventSP &event_sp) {
22122212
m_progress_reports.push_back(progress_report);
22132213
}
22142214
}
2215-
2216-
RedrawStatusline();
22172215
}
22182216

22192217
std::optional<Debugger::ProgressReport>

0 commit comments

Comments
 (0)