Skip to content

Commit

Permalink
remove unused configuration property.
Browse files Browse the repository at this point in the history
  • Loading branch information
mohammadKarimi committed Oct 24, 2024
1 parent 4dd7a50 commit 5b2d395
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 18 deletions.
2 changes: 0 additions & 2 deletions src/Riter/Core/HotKey/HotKeysConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ public class Value
public string Modifiers { get; init; }

public string Key { get; init; }

public string Description { get; init; }
}

public class HotKeysConfig
Expand Down
24 changes: 8 additions & 16 deletions src/Riter/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,64 +5,56 @@
"Key": "Drawing",
"Value": {
"Modifiers": "",
"Key": "D",
"Description": "Drawing Action"
"Key": "D"
}
},
{
"Key": "Erasing",
"Value": {
"Modifiers": "",
"Key": "E",
"Description": "Erasing Action"
"Key": "E"
}
},
{
"Key": "HideAll",
"Value": {
"Modifiers": "CTRL",
"Key": "H",
"Description": "HideAll Action"
"Key": "H"
}
},
{
"Key": "Trash",
"Value": {
"Modifiers": "CTRL",
"Key": "T",
"Description": "Trash Action"
"Key": "T"
}
},
{
"Key": "Undo",
"Value": {
"Modifiers": "",
"Key": "Z",
"Description": "Undo Action"
"Key": "Z"
}
},
{
"Key": "Redo",
"Value": {
"Modifiers": "",
"Key": "X",
"Description": "Redo Action"
"Key": "X"
}
},
{
"Key": "Highlightr",
"Value": {
"Modifiers": "",
"Key": "H",
"Description": "Highlightr Action"
"Key": "H"
}
},
{
"Key": "Release",
"Value": {
"Modifiers": "",
"Key": "R",
"Description": "Drawing Action"
"Key": "R"
}
}
]
Expand Down

0 comments on commit 5b2d395

Please sign in to comment.