Improve No Recent Launch Dialog#2616
Open
SougandhS wants to merge 1 commit intoeclipse-platform:masterfrom
Open
Improve No Recent Launch Dialog#2616SougandhS wants to merge 1 commit intoeclipse-platform:masterfrom
SougandhS wants to merge 1 commit intoeclipse-platform:masterfrom
Conversation
Contributor
5f4d456 to
e12099f
Compare
There was a problem hiding this comment.
Pull request overview
Improves the “No Recent Launches” UX in the Eclipse Debug UI context launching flow by replacing the plain info dialog with a dialog that can jump directly to the appropriate Launch Configuration group.
Changes:
- Replace “no recent launches”
MessageDialogwith a customMessageDialogsubclass that adds an “Open … Config” action. - Add NLS keys for the new button labels.
- Update copyrights to 2026 in the touched files.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 5 comments.
| File | Description |
|---|---|
debug/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/contextlaunching/ContextRunner.java |
Introduces LaunchFailedDialog and uses it in “no recent launches” scenarios; adds mode-based button labeling. |
debug/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/contextlaunching/ContextMessages.properties |
Adds new NLS strings for the dialog button labels. |
debug/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/contextlaunching/ContextMessages.java |
Adds corresponding NLS fields for the new message keys. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
e12099f to
64cfe4c
Compare
1b31014 to
a68cde5
Compare
This commit add an additional Run/Debug Launch config button to quickly open corresponding launch group from the dialog instead of closing and clicking the drop down to navigate the same
a68cde5 to
29c5fd3
Compare
Contributor
Author
|
Hi @iloveeclipse, If there are no more changes can this be merged ? - the build failures look like some infra issue. |
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.
Adds a new button in the Run/Debug/etc Launch Configuration dialog for the “No Recent Launches” state. This allows users who accidentally click Run or Debug or Any launches without any recent configurations to quickly jump to the corresponding launch configuration group directly from the dialog, without closing it and navigating through the dropdown again.
This improves usability by providing a faster and more convenient recovery path when no recent launches are available.
Before :
After :
