Вопрос

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