summaryrefslogtreecommitdiff
path: root/src/gui/widgets/tabs/setup_other.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/widgets/tabs/setup_other.cpp')
-rw-r--r--src/gui/widgets/tabs/setup_other.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gui/widgets/tabs/setup_other.cpp b/src/gui/widgets/tabs/setup_other.cpp
index 16d467f77..a20d4472b 100644
--- a/src/gui/widgets/tabs/setup_other.cpp
+++ b/src/gui/widgets/tabs/setup_other.cpp
@@ -366,6 +366,10 @@ Setup_Other::Setup_Other(const Widget2 *const widget) :
"ignorelogpackets", this, "ignorelogpacketsEvent");
// TRANSLATORS: settings option
+ new SetupItemCheckBox(_("Log unimplimented packets"), "",
+ "unimplimentedLog", this, "unimplimentedLogEvent");
+
+ // TRANSLATORS: settings option
new SetupItemCheckBox(_("Enable OpenGL log"), "",
"debugOpenGL", this, "debugOpenGLEvent");
@@ -425,6 +429,7 @@ void Setup_Other::apply()
SetupTabScroll::apply();
logger->setDebugLog(config.getBoolValue("debugLog"));
+ logger->setReportUnimplimented(config.getBoolValue("unimplimentedLog"));
Net::loadIgnorePackets();
}