문제

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

도움이 되었습니까?

해결책

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top