Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can the JEDI Code Library, Delphi IDE menu item (JCL Options...), be moved?

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

enter image description here

like image 353
eyeClaxton Avatar asked Apr 27 '12 00:04

eyeClaxton


1 Answers

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

ToolsMenuItem.Insert(0, FConfigurationMenuItem);

I think if you change it to:

ToolsMenuItem.Add(FConfigurationMenuItem);

Then it will at the bottom.

Hope this points you in the right direction...

like image 195
Nicholas Ring Avatar answered Sep 21 '22 17:09

Nicholas Ring