-
How do I change default hotkeys? They are not defined in the config, but hardcoded. this works, but default action for 'D' is working too, so I ended up with two actions for a single key press... |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 6 replies
-
Your setting is correct, D is being used for // in igconfig.json
{
"MenuHotkeys": {
"MnuDeleteFromHardDisk": ["D"],
"MnuOpenWith": []
}
} Here is the full list of the default hotkey for menu: ImageGlass/Source/ImageGlass/FrmMain/FrmMain.Configs.cs Lines 38 to 135 in d439deb |
Beta Was this translation helpful? Give feedback.
-
Thanks, I actually found it by myself, went here to answer my own question, but you were faster :) |
Beta Was this translation helpful? Give feedback.
-
ok i think i need to edit
so can you give me what to do ? @d2phap I want to copy image with ctrl+c and then be able to paste into folder with ctrl+v |
Beta Was this translation helpful? Give feedback.
Your setting is correct, D is being used for
MnuOpenWith
so you will need to override it, too:Here is the full list of the default hotkey for menu:
ImageGlass/Source/ImageGlass/FrmMain/FrmMain.Configs.cs
Lines 38 to 135 in d439deb