diff --git a/.github/actions/spell-check/patterns.txt b/.github/actions/spell-check/patterns.txt
index 51f55ba3dc..5c9c1d4d22 100644
--- a/.github/actions/spell-check/patterns.txt
+++ b/.github/actions/spell-check/patterns.txt
@@ -71,6 +71,7 @@ TestCase\("[^"]+"
\\restart
\\restore
\\result
+\\rotating
\\runner
\\runtimes
\\Telemetry
diff --git a/PowerToys.sln b/PowerToys.sln
index 10673b0402..df9e2661e0 100644
--- a/PowerToys.sln
+++ b/PowerToys.sln
@@ -233,7 +233,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plu
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "logger", "src\common\logger\logger.vcxproj", "{D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}"
EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SetttingsAPI", "src\common\SettingsAPI\SetttingsAPI.vcxproj", "{6955446D-23F7-4023-9BB3-8657F904AF99}"
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SettingsAPI", "src\common\SettingsAPI\SettingsAPI.vcxproj", "{6955446D-23F7-4023-9BB3-8657F904AF99}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Interop.Tests", "src\common\interop\interop-tests\Microsoft.Interop.Tests.csproj", "{58736667-1027-4AD7-BFDF-7A3A6474103A}"
EndProject
diff --git a/installer/PowerToysSetupCustomActions/CustomAction.cpp b/installer/PowerToysSetupCustomActions/CustomAction.cpp
index a23cfc2f6c..c4362e3bb5 100644
--- a/installer/PowerToysSetupCustomActions/CustomAction.cpp
+++ b/installer/PowerToysSetupCustomActions/CustomAction.cpp
@@ -780,7 +780,7 @@ UINT __stdcall CertifyVirtualCameraDriverCA(MSIHANDLE hInstall)
ExitOnFailure(hr, "Failed to initialize", hr);
hr = WcaGetProperty(L"CustomActionData", &certificatePath);
- ExitOnFailure(hr, "Failed to get install preperty", hr);
+ ExitOnFailure(hr, "Failed to get install property", hr);
hCertStore = CertOpenStore(CERT_STORE_PROV_SYSTEM, 0, 0, CERT_SYSTEM_STORE_LOCAL_MACHINE, L"AuthRoot");
if (!hCertStore)
@@ -858,7 +858,7 @@ UINT __stdcall InstallVirtualCameraDriverCA(MSIHANDLE hInstall)
ExitOnFailure(hr, "Failed to initialize");
hr = WcaGetProperty(L"CustomActionData", &driverPath);
- ExitOnFailure(hr, "Failed to get install preperty");
+ ExitOnFailure(hr, "Failed to get install property");
BOOL requiresReboot;
DiInstallDriverW(GetConsoleWindow(), driverPath, DIIRFLAG_FORCE_INF, &requiresReboot);
@@ -889,7 +889,7 @@ UINT __stdcall UninstallVirtualCameraDriverCA(MSIHANDLE hInstall)
ExitOnFailure(hr, "Failed to initialize");
hr = WcaGetProperty(L"CustomActionData", &driverPath);
- ExitOnFailure(hr, "Failed to get uninstall preperty");
+ ExitOnFailure(hr, "Failed to get uninstall property");
BOOL requiresReboot;
DiUninstallDriverW(GetConsoleWindow(), driverPath, 0, &requiresReboot);
diff --git a/src/ActionRunner/actionRunner.vcxproj b/src/ActionRunner/actionRunner.vcxproj
index e09c109fdb..eedd9d223f 100644
--- a/src/ActionRunner/actionRunner.vcxproj
+++ b/src/ActionRunner/actionRunner.vcxproj
@@ -47,7 +47,7 @@
{d9b8fc84-322a-4f9f-bbb9-20915c47ddfd}
-
+
{6955446d-23f7-4023-9bb3-8657f904af99}
diff --git a/src/Update/PowerToys.Update.vcxproj b/src/Update/PowerToys.Update.vcxproj
index f665c6aa51..c8c554d3f9 100644
--- a/src/Update/PowerToys.Update.vcxproj
+++ b/src/Update/PowerToys.Update.vcxproj
@@ -50,7 +50,7 @@
{1d5be09d-78c0-4fd7-af00-ae7c1af7c525}
-
+
{6955446d-23f7-4023-9bb3-8657f904af99}
diff --git a/src/common/SettingsAPI/SetttingsAPI.vcxproj b/src/common/SettingsAPI/SettingsAPI.vcxproj
similarity index 97%
rename from src/common/SettingsAPI/SetttingsAPI.vcxproj
rename to src/common/SettingsAPI/SettingsAPI.vcxproj
index 46c5ff8bf4..71f01dfa07 100644
--- a/src/common/SettingsAPI/SetttingsAPI.vcxproj
+++ b/src/common/SettingsAPI/SettingsAPI.vcxproj
@@ -5,8 +5,8 @@
16.0
{6955446D-23F7-4023-9BB3-8657F904AF99}
Win32Proj
- SetttingsAPI
- SetttingsAPI
+ SettingsAPI
+ SettingsAPI
diff --git a/src/common/UnitTests-CommonLib/Settings.Tests.cpp b/src/common/UnitTests-CommonLib/Settings.Tests.cpp
index d4a1a2ba87..a0c386bde6 100644
--- a/src/common/UnitTests-CommonLib/Settings.Tests.cpp
+++ b/src/common/UnitTests-CommonLib/Settings.Tests.cpp
@@ -298,9 +298,9 @@ namespace UnitTestsCommonLib
int actualSize = expectedSize;
wchar_t* buffer = new wchar_t[expectedSize];
- bool serizalizationSuccess = settings.serialize_to_buffer(buffer, &actualSize);
+ bool serializationSuccess = settings.serialize_to_buffer(buffer, &actualSize);
- Assert::IsTrue(serizalizationSuccess);
+ Assert::IsTrue(serializationSuccess);
Assert::AreEqual(expectedSize, actualSize);
auto actualJson = json::JsonObject::Parse(std::wstring(buffer));
diff --git a/src/common/UnitTests-CommonLib/UnitTests-CommonLib.vcxproj b/src/common/UnitTests-CommonLib/UnitTests-CommonLib.vcxproj
index e52a711669..d6896343aa 100644
--- a/src/common/UnitTests-CommonLib/UnitTests-CommonLib.vcxproj
+++ b/src/common/UnitTests-CommonLib/UnitTests-CommonLib.vcxproj
@@ -52,7 +52,7 @@
-
+
{6955446d-23f7-4023-9bb3-8657f904af99}
diff --git a/src/common/updating/updating.vcxproj b/src/common/updating/updating.vcxproj
index 5ced291a0c..f4c4d941bf 100644
--- a/src/common/updating/updating.vcxproj
+++ b/src/common/updating/updating.vcxproj
@@ -55,7 +55,7 @@
-
+
{6955446d-23f7-4023-9bb3-8657f904af99}
diff --git a/src/modules/MouseUtils/FindMyMouse/FindMyMouse.vcxproj b/src/modules/MouseUtils/FindMyMouse/FindMyMouse.vcxproj
index 9c4dd44c98..1593416985 100644
--- a/src/modules/MouseUtils/FindMyMouse/FindMyMouse.vcxproj
+++ b/src/modules/MouseUtils/FindMyMouse/FindMyMouse.vcxproj
@@ -121,7 +121,7 @@
{d9b8fc84-322a-4f9f-bbb9-20915c47ddfd}
-
+
{6955446d-23f7-4023-9bb3-8657f904af99}
diff --git a/src/modules/MouseUtils/MouseHighlighter/MouseHighlighter.vcxproj b/src/modules/MouseUtils/MouseHighlighter/MouseHighlighter.vcxproj
index e3d51b85a8..ea3b45a3a0 100644
--- a/src/modules/MouseUtils/MouseHighlighter/MouseHighlighter.vcxproj
+++ b/src/modules/MouseUtils/MouseHighlighter/MouseHighlighter.vcxproj
@@ -126,7 +126,7 @@
{d9b8fc84-322a-4f9f-bbb9-20915c47ddfd}
-
+
{6955446d-23f7-4023-9bb3-8657f904af99}
diff --git a/src/modules/MouseUtils/MousePointerCrosshairs/MousePointerCrosshairs.vcxproj b/src/modules/MouseUtils/MousePointerCrosshairs/MousePointerCrosshairs.vcxproj
index 0aa00812a5..6e372e73d3 100644
--- a/src/modules/MouseUtils/MousePointerCrosshairs/MousePointerCrosshairs.vcxproj
+++ b/src/modules/MouseUtils/MousePointerCrosshairs/MousePointerCrosshairs.vcxproj
@@ -127,7 +127,7 @@
{d9b8fc84-322a-4f9f-bbb9-20915c47ddfd}
-
+
{6955446d-23f7-4023-9bb3-8657f904af99}
diff --git a/src/modules/ShortcutGuide/ShortcutGuide/ShortcutGuide.vcxproj b/src/modules/ShortcutGuide/ShortcutGuide/ShortcutGuide.vcxproj
index 40c3f66ee1..9efea4031a 100644
--- a/src/modules/ShortcutGuide/ShortcutGuide/ShortcutGuide.vcxproj
+++ b/src/modules/ShortcutGuide/ShortcutGuide/ShortcutGuide.vcxproj
@@ -157,7 +157,7 @@
{d9b8fc84-322a-4f9f-bbb9-20915c47ddfd}
-
+
{6955446d-23f7-4023-9bb3-8657f904af99}
diff --git a/src/modules/ShortcutGuide/ShortcutGuideModuleInterface/ShortcutGuideModuleInterface.vcxproj b/src/modules/ShortcutGuide/ShortcutGuideModuleInterface/ShortcutGuideModuleInterface.vcxproj
index 50be6cd5db..7eba9b0717 100644
--- a/src/modules/ShortcutGuide/ShortcutGuideModuleInterface/ShortcutGuideModuleInterface.vcxproj
+++ b/src/modules/ShortcutGuide/ShortcutGuideModuleInterface/ShortcutGuideModuleInterface.vcxproj
@@ -86,7 +86,7 @@
{d9b8fc84-322a-4f9f-bbb9-20915c47ddfd}
-
+
{6955446d-23f7-4023-9bb3-8657f904af99}
diff --git a/src/modules/alwaysontop/AlwaysOnTop/AlwaysOnTop.vcxproj b/src/modules/alwaysontop/AlwaysOnTop/AlwaysOnTop.vcxproj
index 76d8b6fe3c..5cdff9c7ed 100644
--- a/src/modules/alwaysontop/AlwaysOnTop/AlwaysOnTop.vcxproj
+++ b/src/modules/alwaysontop/AlwaysOnTop/AlwaysOnTop.vcxproj
@@ -182,7 +182,7 @@
{d9b8fc84-322a-4f9f-bbb9-20915c47ddfd}
-
+
{6955446d-23f7-4023-9bb3-8657f904af99}
diff --git a/src/modules/alwaysontop/AlwaysOnTopModuleInterface/AlwaysOnTopModuleInterface.vcxproj b/src/modules/alwaysontop/AlwaysOnTopModuleInterface/AlwaysOnTopModuleInterface.vcxproj
index e3c9042456..131de385c8 100644
--- a/src/modules/alwaysontop/AlwaysOnTopModuleInterface/AlwaysOnTopModuleInterface.vcxproj
+++ b/src/modules/alwaysontop/AlwaysOnTopModuleInterface/AlwaysOnTopModuleInterface.vcxproj
@@ -67,7 +67,7 @@
{d9b8fc84-322a-4f9f-bbb9-20915c47ddfd}
-
+
{6955446d-23f7-4023-9bb3-8657f904af99}
diff --git a/src/modules/awake/AwakeModuleInterface/AwakeModuleInterface.vcxproj b/src/modules/awake/AwakeModuleInterface/AwakeModuleInterface.vcxproj
index fe77799c61..7701d32e14 100644
--- a/src/modules/awake/AwakeModuleInterface/AwakeModuleInterface.vcxproj
+++ b/src/modules/awake/AwakeModuleInterface/AwakeModuleInterface.vcxproj
@@ -79,7 +79,7 @@
{d9b8fc84-322a-4f9f-bbb9-20915c47ddfd}
-
+
{6955446d-23f7-4023-9bb3-8657f904af99}
diff --git a/src/modules/colorPicker/ColorPicker/ColorPicker.vcxproj b/src/modules/colorPicker/ColorPicker/ColorPicker.vcxproj
index 234ac6a048..fcdd07f070 100644
--- a/src/modules/colorPicker/ColorPicker/ColorPicker.vcxproj
+++ b/src/modules/colorPicker/ColorPicker/ColorPicker.vcxproj
@@ -69,7 +69,7 @@
{d9b8fc84-322a-4f9f-bbb9-20915c47ddfd}
-
+
{6955446d-23f7-4023-9bb3-8657f904af99}
diff --git a/src/modules/fancyzones/FancyZones/FancyZones.vcxproj b/src/modules/fancyzones/FancyZones/FancyZones.vcxproj
index f4e1bed3d6..97a4b459e9 100644
--- a/src/modules/fancyzones/FancyZones/FancyZones.vcxproj
+++ b/src/modules/fancyzones/FancyZones/FancyZones.vcxproj
@@ -166,7 +166,7 @@
{d9b8fc84-322a-4f9f-bbb9-20915c47ddfd}
-
+
{6955446d-23f7-4023-9bb3-8657f904af99}
diff --git a/src/modules/fancyzones/FancyZonesModuleInterface/FancyZonesModuleInterface.vcxproj b/src/modules/fancyzones/FancyZonesModuleInterface/FancyZonesModuleInterface.vcxproj
index 6117b8010d..65ed40ab0a 100644
--- a/src/modules/fancyzones/FancyZonesModuleInterface/FancyZonesModuleInterface.vcxproj
+++ b/src/modules/fancyzones/FancyZonesModuleInterface/FancyZonesModuleInterface.vcxproj
@@ -68,7 +68,7 @@
{d9b8fc84-322a-4f9f-bbb9-20915c47ddfd}
-
+
{6955446d-23f7-4023-9bb3-8657f904af99}
diff --git a/src/modules/fancyzones/FancyZonesTests/UnitTests/UnitTests.vcxproj b/src/modules/fancyzones/FancyZonesTests/UnitTests/UnitTests.vcxproj
index 373f528ed6..49d3cbbd01 100644
--- a/src/modules/fancyzones/FancyZonesTests/UnitTests/UnitTests.vcxproj
+++ b/src/modules/fancyzones/FancyZonesTests/UnitTests/UnitTests.vcxproj
@@ -73,7 +73,7 @@
{caba8dfb-823b-4bf2-93ac-3f31984150d9}
-
+
{6955446d-23f7-4023-9bb3-8657f904af99}
diff --git a/src/modules/imageresizer/dll/ImageResizerExt.vcxproj b/src/modules/imageresizer/dll/ImageResizerExt.vcxproj
index a22a15564c..d8f5325541 100644
--- a/src/modules/imageresizer/dll/ImageResizerExt.vcxproj
+++ b/src/modules/imageresizer/dll/ImageResizerExt.vcxproj
@@ -132,7 +132,7 @@
-
+
{6955446d-23f7-4023-9bb3-8657f904af99}
diff --git a/src/modules/keyboardmanager/KeyboardManagerEditorTest/KeyboardManagerEditorTest.vcxproj b/src/modules/keyboardmanager/KeyboardManagerEditorTest/KeyboardManagerEditorTest.vcxproj
index d8f3de0521..2af4604c29 100644
--- a/src/modules/keyboardmanager/KeyboardManagerEditorTest/KeyboardManagerEditorTest.vcxproj
+++ b/src/modules/keyboardmanager/KeyboardManagerEditorTest/KeyboardManagerEditorTest.vcxproj
@@ -56,7 +56,7 @@
-
+
{6955446d-23f7-4023-9bb3-8657f904af99}
diff --git a/src/modules/keyboardmanager/KeyboardManagerEditorTest/LoadingAndSavingRemappingTests.cpp b/src/modules/keyboardmanager/KeyboardManagerEditorTest/LoadingAndSavingRemappingTests.cpp
index eb5b591593..7481d3e338 100644
--- a/src/modules/keyboardmanager/KeyboardManagerEditorTest/LoadingAndSavingRemappingTests.cpp
+++ b/src/modules/keyboardmanager/KeyboardManagerEditorTest/LoadingAndSavingRemappingTests.cpp
@@ -12,7 +12,7 @@ namespace RemappingUITests
// Tests for methods in the LoadingAndSavingRemappingHelper namespace
TEST_CLASS (LoadingAndSavingRemappingTests)
{
- std::wstring testApp1 = L"testtrocess1.exe";
+ std::wstring testApp1 = L"testprocess1.exe";
std::wstring testApp2 = L"testprocess2.exe";
public:
diff --git a/src/modules/keyboardmanager/KeyboardManagerEngine/KeyboardManagerEngine.vcxproj b/src/modules/keyboardmanager/KeyboardManagerEngine/KeyboardManagerEngine.vcxproj
index e56d7105a6..17ca6b98e5 100644
--- a/src/modules/keyboardmanager/KeyboardManagerEngine/KeyboardManagerEngine.vcxproj
+++ b/src/modules/keyboardmanager/KeyboardManagerEngine/KeyboardManagerEngine.vcxproj
@@ -72,7 +72,7 @@
{d9b8fc84-322a-4f9f-bbb9-20915c47ddfd}
-
+
{6955446d-23f7-4023-9bb3-8657f904af99}
diff --git a/src/modules/keyboardmanager/KeyboardManagerEngineTest/AppSpecificShortcutRemappingTests.cpp b/src/modules/keyboardmanager/KeyboardManagerEngineTest/AppSpecificShortcutRemappingTests.cpp
index 32d6b0c1d5..f37a03a528 100644
--- a/src/modules/keyboardmanager/KeyboardManagerEngineTest/AppSpecificShortcutRemappingTests.cpp
+++ b/src/modules/keyboardmanager/KeyboardManagerEngineTest/AppSpecificShortcutRemappingTests.cpp
@@ -16,7 +16,7 @@ namespace RemappingLogicTests
private:
KeyboardManagerInput::MockedInput mockedInputHandler;
State testState;
- std::wstring testApp1 = L"testtrocess1.exe";
+ std::wstring testApp1 = L"testprocess1.exe";
std::wstring testApp2 = L"testprocess2.exe";
public:
diff --git a/src/modules/keyboardmanager/KeyboardManagerEngineTest/KeyboardManagerEngineTest.vcxproj b/src/modules/keyboardmanager/KeyboardManagerEngineTest/KeyboardManagerEngineTest.vcxproj
index 5cbbda55eb..b1826200b9 100644
--- a/src/modules/keyboardmanager/KeyboardManagerEngineTest/KeyboardManagerEngineTest.vcxproj
+++ b/src/modules/keyboardmanager/KeyboardManagerEngineTest/KeyboardManagerEngineTest.vcxproj
@@ -63,7 +63,7 @@
-
+
{6955446d-23f7-4023-9bb3-8657f904af99}
diff --git a/src/modules/keyboardmanager/common/KeyboardManagerCommon.vcxproj b/src/modules/keyboardmanager/common/KeyboardManagerCommon.vcxproj
index 354e5aa9c4..10b8209b58 100644
--- a/src/modules/keyboardmanager/common/KeyboardManagerCommon.vcxproj
+++ b/src/modules/keyboardmanager/common/KeyboardManagerCommon.vcxproj
@@ -77,7 +77,7 @@
{d9b8fc84-322a-4f9f-bbb9-20915c47ddfd}
-
+
{6955446d-23f7-4023-9bb3-8657f904af99}
diff --git a/src/modules/keyboardmanager/dll/KeyboardManager.vcxproj b/src/modules/keyboardmanager/dll/KeyboardManager.vcxproj
index afca00e97c..df150e4914 100644
--- a/src/modules/keyboardmanager/dll/KeyboardManager.vcxproj
+++ b/src/modules/keyboardmanager/dll/KeyboardManager.vcxproj
@@ -71,7 +71,7 @@
{d9b8fc84-322a-4f9f-bbb9-20915c47ddfd}
-
+
{6955446d-23f7-4023-9bb3-8657f904af99}
diff --git a/src/modules/launcher/Microsoft.Launcher/Microsoft.Launcher.vcxproj b/src/modules/launcher/Microsoft.Launcher/Microsoft.Launcher.vcxproj
index 47e10420fa..8458c5cc4b 100644
--- a/src/modules/launcher/Microsoft.Launcher/Microsoft.Launcher.vcxproj
+++ b/src/modules/launcher/Microsoft.Launcher/Microsoft.Launcher.vcxproj
@@ -69,7 +69,7 @@
{d9b8fc84-322a-4f9f-bbb9-20915c47ddfd}
-
+
{6955446d-23f7-4023-9bb3-8657f904af99}
diff --git a/src/modules/powerrename/lib/PowerRenameLib.vcxproj b/src/modules/powerrename/lib/PowerRenameLib.vcxproj
index 1adadac358..519c368c07 100644
--- a/src/modules/powerrename/lib/PowerRenameLib.vcxproj
+++ b/src/modules/powerrename/lib/PowerRenameLib.vcxproj
@@ -77,7 +77,7 @@
-
+
{6955446d-23f7-4023-9bb3-8657f904af99}
diff --git a/src/modules/powerrename/testapp/PowerRenameTest.vcxproj b/src/modules/powerrename/testapp/PowerRenameTest.vcxproj
index 69d3c0498e..e488429d7e 100644
--- a/src/modules/powerrename/testapp/PowerRenameTest.vcxproj
+++ b/src/modules/powerrename/testapp/PowerRenameTest.vcxproj
@@ -66,7 +66,7 @@
{caba8dfb-823b-4bf2-93ac-3f31984150d9}
-
+
{6955446d-23f7-4023-9bb3-8657f904af99}
diff --git a/src/modules/powerrename/unittests/PowerRenameLibUnitTests.vcxproj b/src/modules/powerrename/unittests/PowerRenameLibUnitTests.vcxproj
index 3e0c2ddafb..8a8395c051 100644
--- a/src/modules/powerrename/unittests/PowerRenameLibUnitTests.vcxproj
+++ b/src/modules/powerrename/unittests/PowerRenameLibUnitTests.vcxproj
@@ -71,7 +71,7 @@
-
+
{6955446d-23f7-4023-9bb3-8657f904af99}
diff --git a/src/modules/previewpane/powerpreview/powerpreview.vcxproj b/src/modules/previewpane/powerpreview/powerpreview.vcxproj
index f97a12d925..9ffc9dfc34 100644
--- a/src/modules/previewpane/powerpreview/powerpreview.vcxproj
+++ b/src/modules/previewpane/powerpreview/powerpreview.vcxproj
@@ -86,7 +86,7 @@
{1d5be09d-78c0-4fd7-af00-ae7c1af7c525}
-
+
{6955446d-23f7-4023-9bb3-8657f904af99}
diff --git a/src/modules/videoconference/VideoConferenceModule/Video Conference.vcxproj b/src/modules/videoconference/VideoConferenceModule/Video Conference.vcxproj
index 147d4663b0..ab9562f8c6 100644
--- a/src/modules/videoconference/VideoConferenceModule/Video Conference.vcxproj
+++ b/src/modules/videoconference/VideoConferenceModule/Video Conference.vcxproj
@@ -177,7 +177,7 @@ xcopy /y /I "$(ProjectDir)black.bmp*" "$(OutDir)"
{caba8dfb-823b-4bf2-93ac-3f31984150d9}
-
+
{6955446d-23f7-4023-9bb3-8657f904af99}
diff --git a/src/settings-ui/Settings.UI.Library/ViewModels/VideoConferenceViewModel.cs b/src/settings-ui/Settings.UI.Library/ViewModels/VideoConferenceViewModel.cs
index 115d6e40b9..78c085cfa6 100644
--- a/src/settings-ui/Settings.UI.Library/ViewModels/VideoConferenceViewModel.cs
+++ b/src/settings-ui/Settings.UI.Library/ViewModels/VideoConferenceViewModel.cs
@@ -91,7 +91,7 @@ namespace Microsoft.PowerToys.Settings.UI.ViewModels
_isEnabled = GeneralSettingsConfig.Enabled.VideoConference;
_cameraAndMicrophoneMuteHotkey = Settings.Properties.MuteCameraAndMicrophoneHotkey.Value;
- _mirophoneMuteHotkey = Settings.Properties.MuteMicrophoneHotkey.Value;
+ _microphoneMuteHotkey = Settings.Properties.MuteMicrophoneHotkey.Value;
_cameraMuteHotkey = Settings.Properties.MuteCameraHotkey.Value;
CameraImageOverlayPath = Settings.Properties.CameraOverlayImagePath.Value;
SelectOverlayImage = new ButtonClickCommand(SelectOverlayImageAction);
@@ -142,7 +142,7 @@ namespace Microsoft.PowerToys.Settings.UI.ViewModels
private int _toolbarPositionIndex;
private int _toolbarMonitorIndex;
private HotkeySettings _cameraAndMicrophoneMuteHotkey;
- private HotkeySettings _mirophoneMuteHotkey;
+ private HotkeySettings _microphoneMuteHotkey;
private HotkeySettings _cameraMuteHotkey;
private int _selectedCameraIndex = -1;
private int _selectedMicrophoneIndex;
@@ -277,14 +277,14 @@ namespace Microsoft.PowerToys.Settings.UI.ViewModels
{
get
{
- return _mirophoneMuteHotkey;
+ return _microphoneMuteHotkey;
}
set
{
- if (value != _mirophoneMuteHotkey)
+ if (value != _microphoneMuteHotkey)
{
- _mirophoneMuteHotkey = value;
+ _microphoneMuteHotkey = value;
Settings.Properties.MuteMicrophoneHotkey.Value = value;
RaisePropertyChanged(nameof(MicrophoneMuteHotkey));
}
@@ -309,7 +309,7 @@ namespace Microsoft.PowerToys.Settings.UI.ViewModels
}
}
- public int ToolbarPostionIndex
+ public int ToolbarPositionIndex
{
get
{
@@ -348,7 +348,7 @@ namespace Microsoft.PowerToys.Settings.UI.ViewModels
break;
}
- RaisePropertyChanged(nameof(ToolbarPostionIndex));
+ RaisePropertyChanged(nameof(ToolbarPositionIndex));
}
}
}
diff --git a/src/settings-ui/Settings.UI/Views/VideoConference.xaml b/src/settings-ui/Settings.UI/Views/VideoConference.xaml
index 0d97c331ef..4d9af9be6e 100644
--- a/src/settings-ui/Settings.UI/Views/VideoConference.xaml
+++ b/src/settings-ui/Settings.UI/Views/VideoConference.xaml
@@ -124,7 +124,7 @@
-
+
diff --git a/tools/BugReportTool/BugReportTool.sln b/tools/BugReportTool/BugReportTool.sln
index 473f5754fc..b92cd92de8 100644
--- a/tools/BugReportTool/BugReportTool.sln
+++ b/tools/BugReportTool/BugReportTool.sln
@@ -5,7 +5,7 @@ VisualStudioVersion = 17.0.32014.148
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BugReportTool", "BugReportTool\BugReportTool.vcxproj", "{99126840-5C30-4E9E-AC6C-E73DDED5C3BD}"
EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SetttingsAPI", "..\..\src\common\SettingsAPI\SetttingsAPI.vcxproj", "{6955446D-23F7-4023-9BB3-8657F904AF99}"
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SettingsAPI", "..\..\src\common\SettingsAPI\SettingsAPI.vcxproj", "{6955446D-23F7-4023-9BB3-8657F904AF99}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
diff --git a/tools/BugReportTool/BugReportTool/BugReportTool.vcxproj b/tools/BugReportTool/BugReportTool/BugReportTool.vcxproj
index 4ff64d1634..db8e01a96f 100644
--- a/tools/BugReportTool/BugReportTool/BugReportTool.vcxproj
+++ b/tools/BugReportTool/BugReportTool/BugReportTool.vcxproj
@@ -62,7 +62,7 @@
-
+
{6955446d-23f7-4023-9bb3-8657f904af99}
diff --git a/tools/project_template/ModuleTemplate/ModuleTemplateCompileTest.vcxproj b/tools/project_template/ModuleTemplate/ModuleTemplateCompileTest.vcxproj
index 3a5134ccbe..20e52475e8 100644
--- a/tools/project_template/ModuleTemplate/ModuleTemplateCompileTest.vcxproj
+++ b/tools/project_template/ModuleTemplate/ModuleTemplateCompileTest.vcxproj
@@ -116,7 +116,7 @@
-
+
{6955446d-23f7-4023-9bb3-8657f904af99}