[Lldb-commits] [lldb] [lldb][breakpoint] Grey out disabled breakpoints (PR #91404)
Chelsea Cassanova via lldb-commits
lldb-commits at lists.llvm.org
Mon Jun 16 09:40:09 PDT 2025
================
@@ -838,6 +840,13 @@ void Breakpoint::GetDescription(Stream *s, lldb::DescriptionLevel level,
bool show_locations) {
assert(s != nullptr);
+ // Grey out any disabled breakpoints in the list of breakpoints.
+ if (!IsEnabled())
+ if (s->AsRawOstream().colors_enabled())
----------------
chelcassanova wrote:
Just updated the patch to add this.
https://github.com/llvm/llvm-project/pull/91404
More information about the lldb-commits
mailing list