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

1

5

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

Bunny answered 27/4, 2012 at 0:9 Comment(0)
C
8

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...

Conners answered 27/4, 2012 at 1:39 Comment(1)
I think it should be locating the first separator item in the menu and inserting itself above that separator. The last part of the menu is for Tools configured in the "configure tools" screen. I really hope that moving this item down there doesn't cause any screwiness in the IDE, but it might NOT be safe to do this even though the OP likes it better.Khamsin

© 2022 - 2024 — McMap. All rights reserved.