We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27bc8a1 commit a62b9b3Copy full SHA for a62b9b3
lldb/source/Core/Debugger.cpp
@@ -486,7 +486,9 @@ const FormatEntity::Entry *Debugger::GetStatuslineFormat() const {
486
487
bool Debugger::SetStatuslineFormat(const FormatEntity::Entry &format) {
488
constexpr uint32_t idx = ePropertyStatuslineFormat;
489
- return SetPropertyAtIndex(idx, format);
+ bool ret = SetPropertyAtIndex(idx, format);
490
+ RedrawStatusline();
491
+ return ret;
492
}
493
494
bool Debugger::GetUseAutosuggestion() const {
0 commit comments