Skip to content
This repository has been archived by the owner on Feb 7, 2024. It is now read-only.

Commit

Permalink
Merge pull request #154 from zowe/user/joewinchester/cicsgroupgraphics
Browse files Browse the repository at this point in the history
CICS Group graphics and slight update to the CICS plex icon
  • Loading branch information
JeffinSiby committed Jan 28, 2022
2 parents 0dc6b95 + ba05296 commit 13ee67e
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 9 deletions.
4 changes: 2 additions & 2 deletions resources/imgs/cics-plex-dark.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 6 additions & 6 deletions resources/imgs/cics-plex-light.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions resources/imgs/cics-system-group-dark.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions resources/imgs/cics-system-group-light.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 4 additions & 1 deletion src/trees/CICSPlexTree.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ export class CICSPlexTree extends TreeItem {
profile: IProfileLoaded,
sessionTree: CICSSessionTree,
group?: string,
public readonly iconPath = getIconPathInResources("cics-plex-dark.svg", "cics-plex-light.svg")
) {
super(plexName, TreeItemCollapsibleState.Collapsed);
this.plexName = plexName;
Expand All @@ -45,6 +44,10 @@ export class CICSPlexTree extends TreeItem {
this.resourceFilters = {};
this.activeFilter = undefined;
this.groupName = group;
this.iconPath =
group ?
getIconPathInResources("cics-system-group-dark.svg ", "cics-system-group-light.svg ") :
getIconPathInResources("cics-plex-dark.svg", "cics-plex-light.svg");
}

public addRegion(region: CICSRegionTree) {
Expand Down

0 comments on commit 13ee67e

Please sign in to comment.