Skip to content

Commit

Permalink
Menu layout tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
Nukem9 committed Sep 27, 2020
1 parent ad3c8ef commit d7da6aa
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/SwissArmyKnife/Plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -128,14 +128,14 @@ DLL_EXPORT void plugsetup(PLUG_SETUPSTRUCT *SetupStruct)
_plugin_menuaddentry(exportMenu, PLUGIN_MENU_EXPORTMAP, "&MAP file");
_plugin_menuaddseparator(g_MenuHandle);

int cryptoMenu = _plugin_menuadd(g_MenuHandle, "Crypto");
_plugin_menuaddentry(cryptoMenu, PLUGIN_MENU_FINDCRYPTO, "&Findcrypt2 with AES-NI");
_plugin_menuaddentry(cryptoMenu, PLUGIN_MENU_AESFINDER, "&AES-Finder");
// Crypto
_plugin_menuaddentry(g_MenuHandle, PLUGIN_MENU_FINDCRYPTO, "&Findcrypt2 with AES-NI");
_plugin_menuaddentry(g_MenuHandle, PLUGIN_MENU_AESFINDER, "&AES-Finder");
_plugin_menuaddseparator(g_MenuHandle);

int signatureMenu = _plugin_menuadd(g_MenuHandle, "Signature");
_plugin_menuaddentry(signatureMenu, PLUGIN_MENU_MAKESIG, "&Create");
_plugin_menuaddentry(signatureMenu, PLUGIN_MENU_BATCHSIG, "&Batch Create");
// Signature
_plugin_menuaddentry(g_MenuHandle, PLUGIN_MENU_MAKESIG, "&Create Signature");
_plugin_menuaddentry(g_MenuHandle, PLUGIN_MENU_BATCHSIG, "&Batch Create Signatures");
_plugin_menuaddseparator(g_MenuHandle);

// Misc
Expand Down

0 comments on commit d7da6aa

Please sign in to comment.