[OOBE] Ensure the Settings button on the SCOOBE page opens Home, not a blank page#46203
Merged
niels9001 merged 1 commit intomicrosoft:mainfrom Mar 24, 2026
Merged
Conversation
niels9001
approved these changes
Mar 18, 2026
Collaborator
niels9001
left a comment
There was a problem hiding this comment.
Great catch! Looks like we only tested it my manually opening the scoobe window hence we didn't catch it!
Collaborator
|
/azp run |
|
Azure Pipelines successfully started running 1 pipeline(s). |
zateutsch
added a commit
that referenced
this pull request
Mar 25, 2026
Cherry-picked commits: - Make KBM Editor pinnable (#46482) - CmdPal: Fix missing primary context command for late-bound items (#46131) - CmdPal: Ensure DockWindow property cleans up after itself (#46303) - CmdPal: Hotfix commonCallbacks array initial count to prevent negative number (#46215) - CmdPal: Fix missing app context menu actions on the main page (#46293) - CmdPal: Fix dock popup XamlRoot handling on DockControl (#46305) - CmdPal: Reduce DockWindow backdrop switching and visual artifacts (#46309) - Always On Top: The opacity should be able to configure the hotkey individually (#46410) - [OOBE] Ensure the Settings button on the SCOOBE page opens Home, not a blank page (#46203) - CmdPal: Fix scroller scrolling and down glyph (#46447) - [Settings] Decouple Settings.UI.Library from PowerDisplay.Lib to fix (#46325)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary of the Pull Request
This PR fixes an issue where selecting the Settings button on the What's New page for a new or upgraded installation of PowerToys would show the Settings application but with a blank contents page instead of the Home page.
PR Checklist
Detailed Description of the Pull Request / Additional comments
When the current version of PowerToys doesn't match the
last_version_run, the What's New (SCOOBE) page is displayed. The Settings page is loaded at the same time in a hidden state.If the user selects the Settings button in the bottom-left of the What's New page,
OpenSettingsItem_Tapped()is called, which calls:This unhides the Settings window, but Settings has not navigated to an initial page, resulting in a blank display.
The solution is to instead call:
Validation Steps Performed
Manual tests, following the instructions given in the original issue, i.e. setting the
last_version_runJSON manually and retrying to simulate the upgrade/new install.