Skip to content

Commit 4d2f079

Browse files
committed
Redefined some kb shortcuts, as ctrl-shift-c/v aren't used elsewhere
1 parent 4d3ac22 commit 4d2f079

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ReClass.NET/Settings.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ public Settings()
1717
_shortcutKeyPerNode = new Dictionary<Type, Keys>
1818
{
1919
{ typeof(Hex64Node), Keys.Control | Keys.Shift | Keys.D6 },
20-
{ typeof(ClassInstanceNode), Keys.Control | Keys.Shift | Keys.I },
20+
{ typeof(ClassInstanceNode), Keys.Control | Keys.Shift | Keys.C },
2121
{ typeof(FloatNode), Keys.Control | Keys.Shift | Keys.F },
2222
{ typeof(Hex8Node), Keys.Control | Keys.Shift | Keys.B },
2323
{ typeof(PointerNode), Keys.Control | Keys.Shift | Keys.P },
2424
{ typeof(Vector2Node), Keys.Control | Keys.Shift | Keys.D2 },
2525
{ typeof(Vector3Node), Keys.Control | Keys.Shift | Keys.D3 },
2626
{ typeof(Vector4Node), Keys.Control | Keys.Shift | Keys.D4 },
27-
{ typeof(VirtualMethodTableNode), Keys.Control | Keys.Shift | Keys.T },
27+
{ typeof(VirtualMethodTableNode), Keys.Control | Keys.Shift | Keys.V },
2828
{ typeof(BoolNode), Keys.Control | Keys.Shift | Keys.O },
2929
{ typeof(EnumNode), Keys.Control | Keys.Shift | Keys.E },
30-
{ typeof(Int32Node), Keys.Control | Keys.Shift | Keys.N }
30+
{ typeof(Int32Node), Keys.Control | Keys.Shift | Keys.I }
3131
};
3232

3333
// Define more here.

0 commit comments

Comments
 (0)