custom cursor: use cursor name for combobox labels

This commit is contained in:
Adam
2021-01-13 21:45:57 -05:00
parent 524ebee67d
commit 7dae40daef

View File

@@ -56,4 +56,10 @@ public enum CustomCursor
this.name = name;
this.cursorImage = ImageUtil.loadImageResource(CustomCursorPlugin.class, icon);
}
@Override
public String toString()
{
return name;
}
}