score:1

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


Related Query

More Query from same tag