From 0a33e0eebee1e044a4a810d65eb6fbbc6ca315b4 Mon Sep 17 00:00:00 2001 From: hjk Date: Thu, 9 Jan 2020 14:32:38 +0100 Subject: [PATCH] Core: Actually create settings widget Amends dae9cb13cfd50317fb47461b5d0f60b05b40c36b Change-Id: I0f4bef0b84e3383860ac5d871dabf089badbcf11 Reviewed-by: David Schulz --- src/plugins/coreplugin/systemsettings.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/coreplugin/systemsettings.cpp b/src/plugins/coreplugin/systemsettings.cpp index 11f0ccdea5a..9873a7f94ca 100644 --- a/src/plugins/coreplugin/systemsettings.cpp +++ b/src/plugins/coreplugin/systemsettings.cpp @@ -263,6 +263,7 @@ SystemSettings::SystemSettings() setId(Constants::SETTINGS_ID_SYSTEM); setDisplayName(tr("System")); setCategory(Constants::SETTINGS_CATEGORY_CORE); + setWidgetCreator([] { return new SystemSettingsWidget; }); } } // namespace Internal