Hi Nick,
welcome on forum.
It is already possible but just not presented in UI interface. Normally HippoEDIT use current antialiasing settings from Windows.
You can change this manually in xml configuration.
Here is an example from def_spec.xml:
<FONTS>
<Font only_monospaced="false" size="10" face_name="Courier New" quality="0" charset="1"/>
</FONTS>
where attribute quality controls anti aliasing settings for selected font:
can be (directly correlate to
OS values for font lfQuality from MSDN):
| DEFAULT_QUALITY | 0 |
| DRAFT_QUALITY | 1 |
| PROOF_QUALITY | 2 |
| NONANTIALIASED_QUALITY | 3 |
| ANTIALIASED_QUALITY | 4 |
| CLEARTYPE_QUALITY | 5 |
| CLEARTYPE_NATURAL_QUALITY | 6 |
when changing, be aware about inheritance.
Do not change in spec files (works, but can be overwritten during update) but in user files.
Corresponding entry in user file would be created if you change default font settings for this syntax.
Best regards,
Alex.