]> sigrok.org Git - pulseview.git/blobdiff - pv/globalsettings.cpp
GlobalSettings: Announce settings changes to allow logging
[pulseview.git] / pv / globalsettings.cpp
index 0aaffdd927946f08b755c1d811c4c28feaa511e5..8be4265b247e729d00f9bccacd433283d868250f 100644 (file)
@@ -20,6 +20,7 @@
 #include "globalsettings.hpp"
 
 #include <QApplication>
+#include <QDebug>
 #include <QFontMetrics>
 #include <QString>
 
@@ -106,6 +107,8 @@ void GlobalSettings::setValue(const QString &key, const QVariant &value)
 
        QSettings::setValue(key, value);
 
+       qDebug() << "Setting" << key << "changed to" << value;
+
        // Call all registered callbacks
        for (GlobalSettingsInterface *cb : callbacks_)
                cb->on_setting_changed(key, value);