[KBM]Disable utility by default on new install (#29278)

This commit is contained in:
Jaime Bernardo 2023-10-19 17:00:40 +01:00 committed by GitHub
parent f0b460312a
commit 6e598f54af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -168,6 +168,13 @@ public:
{
return m_enabled;
}
// Returns whether the PowerToys should be enabled by default
virtual bool is_enabled_by_default() const override
{
return false;
}
};
extern "C" __declspec(dllexport) PowertoyModuleIface* __cdecl powertoy_create()