Skip to content

Commit

Permalink
#6679 update action keys
Browse files Browse the repository at this point in the history
  • Loading branch information
sandy081 committed Jun 13, 2016
1 parent d97f54b commit 2f47453
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/vs/workbench/parts/markers/browser/markersPanelActions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import Tree = require('vs/base/parts/tree/browser/tree');

export class ToggleProblemsPanelAction extends TogglePanelAction {

public static ID:string = 'workbench.action.markers.panel.toggle';
public static ID:string = 'workbench.actions.view.problems';

constructor(id: string, label: string,
@IPartService private partService: IPartService,
Expand Down Expand Up @@ -64,7 +64,7 @@ export class CollapseAllAction extends TreeCollapseAction {
export class FilterAction extends Action {

constructor(private markersPanel: MarkersPanel) {
super('workbench.markers.panel.action.filter', Messages.MARKERS_PANEL_ACTION_TOOLTIP_FILTER, 'markers-panel-action-filter', true);
super('workbench.actions.problems.filter', Messages.MARKERS_PANEL_ACTION_TOOLTIP_FILTER, 'markers-panel-action-filter', true);
}

}
Expand Down
2 changes: 1 addition & 1 deletion src/vs/workbench/parts/markers/common/messages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { IMarker } from 'vs/platform/markers/common/markers';
export default class Messages {

public static MARKERS_PANEL_VIEW_CATEGORY:string= nls.localize('viewCategory', "View");
public static MARKERS_PANEL_TOGGLE_LABEL:string= nls.localize('markers.panel.toggle.label', "Toggle Problems");
public static MARKERS_PANEL_TOGGLE_LABEL:string= nls.localize('problems.view.show.label', "Show Problems");

public static PROBLEMS_PANEL_CONFIGURATION_TITLE:string= nls.localize('problems.panel.configuration.title', "Problems view configuration");
public static PROBLEMS_PANEL_CONFIGURATION_AUTO_REVEAL:string= nls.localize('problems.panel.configuration.autoreveal', "Controls if Problems view should automatically reveal files when opening them");
Expand Down

0 comments on commit 2f47453

Please sign in to comment.