File tree Expand file tree Collapse file tree 3 files changed +13
-4
lines changed
debug/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views Expand file tree Collapse file tree 3 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 11/*****************************************************************
2- * Copyright (c) 2009, 2021 Texas Instruments and others
2+ * Copyright (c) 2009, 2025 Texas Instruments and others
33 *
44 * This program and the accompanying materials
55 * are made available under the terms of the Eclipse Public License 2.0
2626import org .eclipse .debug .core .DebugPlugin ;
2727import org .eclipse .debug .core .IBreakpointManagerListener ;
2828import org .eclipse .debug .core .model .IBreakpoint ;
29+ import org .eclipse .debug .internal .ui .DebugPluginImages ;
2930import org .eclipse .debug .internal .ui .DebugUIPlugin ;
3031import org .eclipse .debug .internal .ui .IDebugHelpContextIds ;
3132import org .eclipse .debug .internal .ui .VariablesViewModelPresentation ;
@@ -200,6 +201,9 @@ protected void fillContextMenu(IMenuManager menu) {
200201 if (action != null ) {
201202 menu .add (action );
202203 }
204+ action = getAction (FIND_ACTION );
205+ action .setImageDescriptor (DebugPluginImages .getImageDescriptor (IDebugUIConstants .IMG_FIND_ACTION ));
206+ menu .add (action );
203207 action = getAction (ACTION_REMOVE_FROM_GROUP );
204208 if (action != null && action .isEnabled ()) {
205209 menu .add (action );
Original file line number Diff line number Diff line change 11/*******************************************************************************
2- * Copyright (c) 2000, 2021 IBM Corporation and others.
2+ * Copyright (c) 2000, 2025 IBM Corporation and others.
33 *
44 * This program and the accompanying materials
55 * are made available under the terms of the Eclipse Public License 2.0
4242import org .eclipse .debug .core .model .IDebugTarget ;
4343import org .eclipse .debug .core .model .IProcess ;
4444import org .eclipse .debug .core .model .IStackFrame ;
45+ import org .eclipse .debug .internal .ui .DebugPluginImages ;
4546import org .eclipse .debug .internal .ui .DebugUIPlugin ;
4647import org .eclipse .debug .internal .ui .DelegatingModelPresentation ;
4748import org .eclipse .debug .internal .ui .IDebugHelpContextIds ;
@@ -1172,7 +1173,9 @@ protected void fillContextMenu(IMenuManager menu) {
11721173
11731174 menu .add (new Separator (IDebugUIConstants .EMPTY_EDIT_GROUP ));
11741175 menu .add (new Separator (IDebugUIConstants .EDIT_GROUP ));
1175- menu .add (getAction (FIND_ACTION ));
1176+ IAction findAction = getAction (FIND_ACTION );
1177+ findAction .setImageDescriptor (DebugPluginImages .getImageDescriptor (IDebugUIConstants .IMG_FIND_ACTION ));
1178+ menu .add (findAction );
11761179 menu .add (new Separator (IDebugUIConstants .EMPTY_STEP_GROUP ));
11771180 menu .add (new Separator (IDebugUIConstants .STEP_GROUP ));
11781181 menu .add (new GroupMarker (IDebugUIConstants .STEP_INTO_GROUP ));
Original file line number Diff line number Diff line change 11/*******************************************************************************
2- * Copyright (c) 2000, 2019 IBM Corporation and others.
2+ * Copyright (c) 2000, 2025 IBM Corporation and others.
33 *
44 * This program and the accompanying materials
55 * are made available under the terms of the Eclipse Public License 2.0
3636import org .eclipse .core .runtime .jobs .Job ;
3737import org .eclipse .debug .core .DebugException ;
3838import org .eclipse .debug .core .DebugPlugin ;
39+ import org .eclipse .debug .internal .ui .DebugPluginImages ;
3940import org .eclipse .debug .internal .ui .DebugUIPlugin ;
4041import org .eclipse .debug .internal .ui .DelegatingModelPresentation ;
4142import org .eclipse .debug .internal .ui .IDebugHelpContextIds ;
@@ -967,6 +968,7 @@ protected void createActions() {
967968 setAction ("ChangeVariableValue" , action ); //$NON-NLS-1$
968969
969970 action = new VirtualFindAction (getVariablesViewer ());
971+ action .setImageDescriptor (DebugPluginImages .getImageDescriptor (IDebugUIConstants .IMG_FIND_ACTION ));
970972 setGlobalAction (FIND_ACTION , action );
971973 }
972974
You can’t perform that action at this time.
0 commit comments