Latest round of changes

Now that I figured out why the settings were not propagated, I started working on integrating the proper modules in the stack.
This commit is contained in:
Den Delimarsky
2021-04-07 20:58:53 -07:00
parent 9cb333f7b5
commit 2afa653eff
3 changed files with 35 additions and 3 deletions

View File

@@ -148,7 +148,7 @@ int runner(bool isProcessElevated, bool openSettings, bool openOobe)
chdir_current_executable();
// Load Powertoys DLLs
const std::array<std::wstring_view, 8> knownModules = {
const std::array<std::wstring_view, 9> knownModules = {
L"modules/FancyZones/fancyzones.dll",
L"modules/FileExplorerPreview/powerpreview.dll",
L"modules/ImageResizer/ImageResizerExt.dll",
@@ -157,6 +157,7 @@ int runner(bool isProcessElevated, bool openSettings, bool openOobe)
L"modules/PowerRename/PowerRenameExt.dll",
L"modules/ShortcutGuide/ShortcutGuide.dll",
L"modules/ColorPicker/ColorPicker.dll",
L"modules/Espresso/Espresso.dll",
};
for (const auto& moduleSubdir : knownModules)