diff --git a/Applications/SystemMonitor/ProcessStacksWidget.cpp b/Applications/SystemMonitor/ProcessStacksWidget.cpp index dce6cd6a7b..906e8a8e12 100644 --- a/Applications/SystemMonitor/ProcessStacksWidget.cpp +++ b/Applications/SystemMonitor/ProcessStacksWidget.cpp @@ -60,5 +60,8 @@ void ProcessStacksWidget::refresh() return; } - m_stacks_editor->set_text(file->read_all()); + auto new_text = file->read_all(); + if (m_stacks_editor->text() != new_text) { + m_stacks_editor->set_text(new_text); + } }