jmchamberlain / workspacemechanic

Automatically exported from code.google.com/p/workspacemechanic
0 stars 0 forks source link

Icon is not displayed correctly in Eclipse Mars on Windows #125

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Install workspacemechanic in Eclipse Mars

What is the expected output? What do you see instead?
The workspacemechanic icon is not displayed correctly. 

What version of the product are you using? On what operating system?
Latest version on Windows.

Please provide any additional information below.
The problem is in the Eclipse platform, see 
https://bugs.eclipse.org/bugs/show_bug.cgi?id=471313 for a workaround.

Original issue reported on code.google.com by mattias....@gmail.com on 15 Jul 2015 at 7:28

GoogleCodeExporter commented 8 years ago
A workaround is to create a new plugin with the following plugin.xml

<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
   <extension
         point="org.eclipse.ui.commands">
      <command
            id="se.vhs.nya.eclipse.mars.workaround.command.wsm"
            name="'">
      </command>
   </extension>
   <extension
         point="org.eclipse.ui.menus">
      <menuContribution
            allPopups="false"
            locationURI="toolbar:com.google.eclipse.mechanic.contributedTrim">
         <command
               commandId="se.vhs.nya.eclipse.mars.workaround.command.wsm"
               style="push">
         </command>
      </menuContribution>
   </extension>
</plugin>

Original comment by mattias....@gmail.com on 3 Aug 2015 at 11:41