-
Notifications
You must be signed in to change notification settings - Fork 214
Disable Toggle Instruction Step Mode command using activity support. #1221
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Disable Toggle Instruction Step Mode command using activity support. #1221
Conversation
debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/CDebugUIPlugin.java
Outdated
Show resolved
Hide resolved
d36dad4 to
98f6b48
Compare
debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/CDebugUIPlugin.java
Outdated
Show resolved
Hide resolved
debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/CDebugUIPlugin.java
Outdated
Show resolved
Hide resolved
debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/CDebugUIPlugin.java
Outdated
Show resolved
Hide resolved
98f6b48 to
2449a61
Compare
ruspl-afed
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please provide i18n for introduced labels and descriptions
2449a61 to
9edeccc
Compare
debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/CDebugUIPlugin.java
Show resolved
Hide resolved
158ac3d to
15457d8
Compare
Fixed. |
|
We can already define an id for a contribution item. And that can be used for activity support. |
|
This PR by default disables Toggle Instruction Step Mode command from |
iloveeclipse
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please after changes attach a screenshot of the Capabilities page where the new activity category & sub items are shown.
15457d8 to
6f2b8bc
Compare
iloveeclipse
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
I haven't tested with updated CDT, but I assume you did it.
TISM command is always visible if the CDT Debug UI plug-in is not loaded yet. This happened due to platform limitation.So handle visibility using activity support. see eclipse-cdt#1220
6f2b8bc to
2127130
Compare
ruspl-afed
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
|
This should have had a N&N entry created because it changes the UI for end users in a way that is affecting ISVs. At the recent CDT call it was identified that numerous ISVs documentation point users to the Run menu and main toolbar (next to other debug buttons) on where to find instruction stepping mode. An example is the stm32cubeide user manual available from https://www.st.com/en/development-tools/stm32cubeide.html#documentation - pages 169/170 |
This is a follow-up to eclipse-cdt#1221
PR proposed here #1357 |
This is a follow-up to #1221

TISM command is always visible if the CDT Debug UI plug-in is not loaded yet. This happened due to platform limitation.So handle visibility using activity support.
see #1220