Can I move the JEDI code library, Delphi IDE menu item (JCL options ...)?

Is there a way to move the IDE Delphi Tools-> JCL Options ... menu item to the bottom of the tool menu?

enter image description here

+5
source share
1 answer

In JclOtaActions.pas, in TJclOTAActionExpert.RegisterCommandsit registers the menu item:

ToolsMenuItem.Insert(0, FConfigurationMenuItem);

I think if you change it to:

ToolsMenuItem.Add(FConfigurationMenuItem);

Then it will be down.

Hope this indicates that you are in the right direction ...

+8
source

All Articles