-
Hello, I would like to hide some points in the menu ( Layout, Tools, Settings, Help). I have found two points for this, but I don't understand how to combine them.
Question: How do I combine these two items in a json to be able to hide settings? Thank you for the support |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
You can create {
"_Metadata": {
"Description": "ImageGlass configuration file",
"Version": 9.1
},
"DisabledMenus": [
.............
]
} For ImageGlass 9, you should use the menu names (start with ImageGlass/Source/ImageGlass/FrmMain.Designer.cs Lines 1229 to 1361 in b11e4e4 This is how it looks like when using the |
Beta Was this translation helpful? Give feedback.
-
Thank you for the quick response. It works very well! |
Beta Was this translation helpful? Give feedback.
You can create
igconfig.admin.json
file with only theDisabledMenus
setting:For ImageGlass 9, you should use the menu names (start with
Mnu
prefix) here. Although I will try not to change the menu names as well as the ImageGlass API methods (begins withIG_
), you can find the updated menu names inFrmMain.Designer.cs
file.ImageGlass/Source/ImageGlass/FrmMain.Designer.cs
Lines 1229 to 1361 in b11e4e4