[Lazarus] How to increase the font size of the content of Project Inspector

Anthony Walter sysrpl at gmail.com
Sat Mar 9 12:01:26 CET 2019


In the event you're having a problem seeing an item, this a brief overview
of how the application explorer works.

Application Explorer takes all components owned by the global Application
instance and enumerates them recursively. It then presents those components
in a tree view, where the child nodes are components owned by the parent
component.

So if component is not found by either component name or type name in the
search function, then the component you are searching for either has not
been created or is not in the ownership chain of the global Application
instance,

It may make sense to review the IDE source code and make sure that all
forms and the related components they create set the owner argument in
their constructor to something other than nil. For both consistency and
safety. We don't want to end up with any orphaned components being created.
As such the tool under discussion might be helpful for people who work on
the IDE so they can correct this issue among other things.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.lazarus-ide.org/pipermail/lazarus/attachments/20190309/76fe427d/attachment.html>


More information about the lazarus mailing list