From 49f57809355b92963468b32bdc63cfea7c69f142 Mon Sep 17 00:00:00 2001 From: Duncan Ogilvie Date: Sun, 18 Nov 2018 15:29:10 +0100 Subject: [PATCH] GUI: only show logging enabled/disabled in status bar --- src/gui/Src/Gui/LogView.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/Src/Gui/LogView.cpp b/src/gui/Src/Gui/LogView.cpp index 6df10927..1126e4f3 100644 --- a/src/gui/Src/Gui/LogView.cpp +++ b/src/gui/Src/Gui/LogView.cpp @@ -347,11 +347,11 @@ void LogView::setLoggingEnabled(bool enabled) if(enabled) { loggingEnabled = true; - GuiAddLogMessage(tr("Logging will be enabled.\n").toUtf8().constData()); + GuiAddStatusBarMessage(tr("Logging will be enabled.\n").toUtf8().constData()); } else { - GuiAddLogMessage(tr("Logging will be disabled.\n").toUtf8().constData()); + GuiAddStatusBarMessage(tr("Logging will be disabled.\n").toUtf8().constData()); loggingEnabled = false; } }