custom cursor: use cursor name for combobox labels

This commit is contained in:
Adam
2021-01-13 22:02:20 -05:00
parent 524ebee67d
commit 7dae40daef
@@ -56,4 +56,10 @@ public enum CustomCursor
this.name = name;
this.cursorImage = ImageUtil.loadImageResource(CustomCursorPlugin.class, icon);
}
@Override
public String toString()
{
return name;
}
}