diff --git a/src/plugins/debugger/debuggeractions.cpp b/src/plugins/debugger/debuggeractions.cpp index 266be5df5d6630db1db94b042af774f8757aad00..10adf8d645585776b85f2b28ad5f9fd699faefd1 100644 --- a/src/plugins/debugger/debuggeractions.cpp +++ b/src/plugins/debugger/debuggeractions.cpp @@ -155,9 +155,14 @@ QString DebuggerSettings::dump() const ts << "Debugger settings: "; foreach (SavedAction *item, m_items) { QString key = item->settingsKey(); - if (!key.isEmpty()) - ts << '\n' << key << ": " << item->value().toString() - << " (default: " << item->defaultValue().toString() << ")"; + if (!key.isEmpty()) { + const QString current = item->value().toString(); + const QString default_ = item->defaultValue().toString(); + ts << '\n' << key << ": " << current + << " (default: " << default_ << ")"; + if (current != default_) + ts << " ***"; + } } return out; }