Skip to content
Snippets Groups Projects
Commit 24518cd9 authored by Ming Rui Zhang's avatar Ming Rui Zhang
Browse files

settings: only receive debug log when enabled

Change-Id: I2f44f543e893507be205e6cf1efb0219b76d5418
parent 0a946c76
No related branches found
No related tags found
No related merge requests found
...@@ -339,7 +339,7 @@ Item { ...@@ -339,7 +339,7 @@ Item {
property string logsViewCancel: qsTr("Cancel") property string logsViewCancel: qsTr("Cancel")
property string logsViewCopied: qsTr("Copied to clipboard!") property string logsViewCopied: qsTr("Copied to clipboard!")
property string logsViewDisplay: qsTr("Receive Logs") property string logsViewDisplay: qsTr("Receive Logs")
// ImportFromBackupPage // ImportFromBackupPage
property string archive: qsTr("Archive") property string archive: qsTr("Archive")
property string openFile: qsTr("Open file") property string openFile: qsTr("Open file")
......
...@@ -26,13 +26,7 @@ SettingsAdapter::SettingsAdapter(AppSettingsManager* settingsManager, ...@@ -26,13 +26,7 @@ SettingsAdapter::SettingsAdapter(AppSettingsManager* settingsManager,
QObject* parent) QObject* parent)
: QmlAdapterBase(instance, parent) : QmlAdapterBase(instance, parent)
, settingsManager_(settingsManager) , settingsManager_(settingsManager)
{ {}
QObject::connect(&lrcInstance_->behaviorController(),
&lrc::api::BehaviorController::debugMessageReceived,
this,
&SettingsAdapter::debugMessageReceived,
Qt::ConnectionType::UniqueConnection);
}
QString QString
SettingsAdapter::getDir_Document() SettingsAdapter::getDir_Document()
...@@ -1110,5 +1104,14 @@ SettingsAdapter::isAllModeratorsEnabled(const QString& accountId) ...@@ -1110,5 +1104,14 @@ SettingsAdapter::isAllModeratorsEnabled(const QString& accountId)
void void
SettingsAdapter::monitor(const bool& continuous) SettingsAdapter::monitor(const bool& continuous)
{ {
if (continuous)
debugMessageReceivedConnection_
= QObject::connect(&lrcInstance_->behaviorController(),
&lrc::api::BehaviorController::debugMessageReceived,
this,
&SettingsAdapter::debugMessageReceived,
Qt::ConnectionType::UniqueConnection);
else
disconnect(debugMessageReceivedConnection_);
lrcInstance_->monitor(continuous); lrcInstance_->monitor(continuous);
} }
...@@ -235,5 +235,7 @@ Q_SIGNALS: ...@@ -235,5 +235,7 @@ Q_SIGNALS:
private: private:
AppSettingsManager* settingsManager_; AppSettingsManager* settingsManager_;
QMetaObject::Connection debugMessageReceivedConnection_;
}; };
Q_DECLARE_METATYPE(SettingsAdapter*) Q_DECLARE_METATYPE(SettingsAdapter*)
...@@ -84,6 +84,7 @@ Rectangle { ...@@ -84,6 +84,7 @@ Rectangle {
Layout.rightMargin: JamiTheme.preferredMarginSize Layout.rightMargin: JamiTheme.preferredMarginSize
Layout.bottomMargin: JamiTheme.preferredMarginSize Layout.bottomMargin: JamiTheme.preferredMarginSize
itemWidth: preferredColumnWidth itemWidth: preferredColumnWidth
visible: Qt.platform.os == "windows" ? false : true
} }
// update setting panel // update setting panel
...@@ -92,7 +93,7 @@ Rectangle { ...@@ -92,7 +93,7 @@ Rectangle {
Layout.leftMargin: JamiTheme.preferredMarginSize Layout.leftMargin: JamiTheme.preferredMarginSize
Layout.rightMargin: JamiTheme.preferredMarginSize Layout.rightMargin: JamiTheme.preferredMarginSize
Layout.bottomMargin: JamiTheme.preferredMarginSize Layout.bottomMargin: JamiTheme.preferredMarginSize
visible: Qt.platform.os == "windows"? true : false visible: Qt.platform.os == "windows" ? true : false
} }
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment