Fix nested namespace mismatch

This commit is contained in:
Jiří Polášek
2026-02-12 01:31:53 +01:00
parent 186d4b2dba
commit b0a1acf925

View File

@@ -307,9 +307,9 @@ namespace Microsoft.PowerToys.Settings.UI
return 0;
});
#else
/* If we try to run Settings as a standalone app, it will start PowerToys.exe if not running and open Settings again through it in the Dashboard page. */
Common.UI.SettingsDeepLink.OpenSettings(Common.UI.SettingsDeepLink.SettingsWindow.Dashboard);
Exit();
/* If we try to run Settings as a standalone app, it will start PowerToys.exe if not running and open Settings again through it in the Dashboard page. */
global::Common.UI.SettingsDeepLink.OpenSettings(global::Common.UI.SettingsDeepLink.SettingsWindow.Dashboard);
Exit();
#endif
}
}