Reputation: 21194
How can I disable JEDI string property editor?
I have tried to disable these lines
// RegisterPropertyEditor(TypeInfo(TCaption), TJvHTLabel, 'Caption', TJvHintProperty);
in jvcl\design\jvCtrlsReg.pas then I have used the JEDI installer to do a full reinstall (with "rebuild packages" option active).
No success.
Upvotes: 1
Views: 373
Reputation: 54812
RegisterPropertyEditor(TypeInfo(string), BaseClass, 'Hint', TJvHintProperty);
RegisterPropertyEditor(TypeInfo(TCaption), BaseClass, '', TJvHintProperty);
Upvotes: 4
Reputation: 11211
Assuming that these are the properties you are trying to change, I would first remove the package from delphi (which should delete all components from the pallates) then recompile and reinstall.
Upvotes: 1