Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit cfbc918

Browse files
authored
Merge pull request #1876 from github/jcansdale/standard-image-monikers
Use standard image monikers for GitHub pane
2 parents a98a487 + d033a8d commit cfbc918

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

src/GitHub.VisualStudio/GitHub.VisualStudio.vsct

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
xmlns="http://schemas.microsoft.com/VisualStudio/2005-10-18/CommandTable"
44
xmlns:xs="http://www.w3.org/2001/XMLSchema">
55

6+
<!-- Import the standard ImageCatalogGuid monikers -->
7+
<Include href="KnownImageIds.vsct"/>
8+
69
<!-- This is the file that defines the actual layout and type of the commands.
710
It is divided in different sections (e.g. command definition, command
811
placement, ...), with each defining a specific set of properties.
@@ -138,7 +141,7 @@
138141

139142
<!--- Toolbar buttons -->
140143
<Button guid="guidGitHubToolbarCmdSet" id="backCommand" type="Button">
141-
<Icon guid="guidImages" id="arrow_left" />
144+
<Icon guid="ImageCatalogGuid" id="Backwards" />
142145
<CommandFlag>IconIsMoniker</CommandFlag>
143146
<CommandFlag>DefaultDisabled</CommandFlag>
144147
<Strings>
@@ -149,7 +152,7 @@
149152
</Button>
150153

151154
<Button guid="guidGitHubToolbarCmdSet" id="forwardCommand" type="Button">
152-
<Icon guid="guidImages" id="arrow_right" />
155+
<Icon guid="ImageCatalogGuid" id="Forwards" />
153156
<CommandFlag>IconIsMoniker</CommandFlag>
154157
<CommandFlag>DefaultDisabled</CommandFlag>
155158
<Strings>
@@ -171,7 +174,7 @@
171174
</Button>
172175

173176
<Button guid="guidGitHubToolbarCmdSet" id="refreshCommand" type="Button">
174-
<Icon guid="guidImages" id="refresh" />
177+
<Icon guid="ImageCatalogGuid" id="Refresh" />
175178
<CommandFlag>IconIsMoniker</CommandFlag>
176179
<CommandFlag>DefaultDisabled</CommandFlag>
177180
<Strings>
@@ -193,7 +196,7 @@
193196
</Button>
194197

195198
<Button guid="guidGitHubToolbarCmdSet" id="helpCommand" type="Button">
196-
<Icon guid="guidImages" id="question" />
199+
<Icon guid="ImageCatalogGuid" id="StatusHelp" />
197200
<CommandFlag>IconIsMoniker</CommandFlag>
198201
<Strings>
199202
<ButtonText>Help</ButtonText>

0 commit comments

Comments
 (0)