Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Various Quality of Life features #262

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 10 commits into
base: master
Choose a base branch
Loading
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Redefined some kb shortcuts, as ctrl-shift-c/v aren't used elsewhere
  • Loading branch information
FransBouma committed Jul 3, 2023
commit 4d2f079049b61d83d391e618e04fc927de783c3c
6 changes: 3 additions & 3 deletions 6 ReClass.NET/Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@ public Settings()
_shortcutKeyPerNode = new Dictionary<Type, Keys>
{
{ typeof(Hex64Node), Keys.Control | Keys.Shift | Keys.D6 },
{ typeof(ClassInstanceNode), Keys.Control | Keys.Shift | Keys.I },
{ typeof(ClassInstanceNode), Keys.Control | Keys.Shift | Keys.C },
{ typeof(FloatNode), Keys.Control | Keys.Shift | Keys.F },
{ typeof(Hex8Node), Keys.Control | Keys.Shift | Keys.B },
{ typeof(PointerNode), Keys.Control | Keys.Shift | Keys.P },
{ typeof(Vector2Node), Keys.Control | Keys.Shift | Keys.D2 },
{ typeof(Vector3Node), Keys.Control | Keys.Shift | Keys.D3 },
{ typeof(Vector4Node), Keys.Control | Keys.Shift | Keys.D4 },
{ typeof(VirtualMethodTableNode), Keys.Control | Keys.Shift | Keys.T },
{ typeof(VirtualMethodTableNode), Keys.Control | Keys.Shift | Keys.V },
{ typeof(BoolNode), Keys.Control | Keys.Shift | Keys.O },
{ typeof(EnumNode), Keys.Control | Keys.Shift | Keys.E },
{ typeof(Int32Node), Keys.Control | Keys.Shift | Keys.N }
{ typeof(Int32Node), Keys.Control | Keys.Shift | Keys.I }
};

// Define more here.
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.