Skip to content

Commit f7fc3c5

Browse files
committed
Fixes issue #8.
Claims Umbraco tree action letters 0x1337 and 0x7331.
1 parent 1cbb3c7 commit f7fc3c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Umbraco.RelationEditor/EditRelationsAction.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ namespace Umbraco.RelationEditor
44
{
55
public class EditRelationsAction : IAction
66
{
7-
public char Letter { get { return 'r'; } }
7+
public char Letter { get { return (char)0x1337; } }
88
public bool ShowInNotifier { get { return true; } }
99
public bool CanBePermissionAssigned { get { return false; } }
1010
public string Icon { get { return "trafic"; } }
@@ -15,7 +15,7 @@ public class EditRelationsAction : IAction
1515

1616
public class EnableRelationsAction : IAction
1717
{
18-
public char Letter { get { return 'R'; } }
18+
public char Letter { get { return (char)0x7331; } }
1919
public bool ShowInNotifier { get { return true; } }
2020
public bool CanBePermissionAssigned { get { return false; } }
2121
public string Icon { get { return "trafic"; } }

0 commit comments

Comments
 (0)