My Eclipse History(SVN) icons become red boxes as blew.
I thought I could fix it using Eclipse plugin files (ex, CSS) But I don't know where and how to change codes.
It happened as soon as I opened the History panel after installing Eclipse and SVN plugin. Moreover, I can see the icons when a mouse moves over the icons.
Eclipse and other information
2021-03 (4.19.0)11.0.10Subversive - SVN Team Provider 4.0.5DarkDefault

If you modify the source code of the Subversive plugin as below and build it, it will work fine. I am hoping someone will build and publish it :)
setHoverImageDescriptor -> setImageDescriptor
protected HistoryAction(String text, String imageDescriptor) {
this(text);
- this.setHoverImageDescriptor(imageDescriptor == null ? null : SVNTeamUIPlugin.instance().getImageDescriptor(imageDescriptor));
+ this.setImageDescriptor(imageDescriptor == null ? null : SVNTeamUIPlugin.instance().getImageDescriptor(imageDescriptor));
}
protected HistoryAction(String text, String imageDescriptor, int style) {
super(SVNUIMessages.getString(text), style);
- this.setHoverImageDescriptor(imageDescriptor == null ? null : SVNTeamUIPlugin.instance().getImageDescriptor(imageDescriptor));
+ this.setImageDescriptor(imageDescriptor == null ? null : SVNTeamUIPlugin.instance().getImageDescriptor(imageDescriptor));
}
https://dev.eclipse.org/svnroot/technology/org.eclipse.subversive/trunk/org.eclipse.team.svn.ui/src/org/eclipse/team/svn/ui/history/HistoryActionManager.java
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With