Skip to content

Redefining default hotkeys #1702

Answered by d2phap
Balzhur asked this question in Q&A
Nov 24, 2023 · 2 comments · 2 replies
Discussion options

You must be logged in to vote

Your setting is correct, D is being used for MnuOpenWith so you will need to override it, too:

// in igconfig.json
{
  "MenuHotkeys": {
    "MnuDeleteFromHardDisk": ["D"],
    "MnuOpenWith": []
  }
}

Here is the full list of the default hotkey for menu:

public static Dictionary<string, List<Hotkey>> CurrentMenuHotkeys { get; set; } = new()
{
// Open main menu
{ nameof(MnuMain), [new(Keys.Alt | Keys.F)] },
// MnuFile
{ nameof(MnuOpenFile), [new(Keys.Control | Keys.O)] },
{ nameof(MnuPasteImage), [new(Keys.Control | Keys.V)] },
{ nameof(MnuNewWindow), [new(Keys

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
2 replies
@JHuberman
Comment options

@d2phap
Comment options

Answer selected by Balzhur
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants