Custom Query (518 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (1 - 3 of 518)

1 2 3 4 5 6 7 8 9 10 11
Ticket Resolution Summary Owner Reporter
#1 wontfix Use Innotek FT2LIB in FM2 Gregg Young
Description

Globally activate the font engine on font engine enabled systems. http://www.edm2.com/index.php/Ft2lib

What I recommend is to use DosLoadModule? and DosQueryProcAddr? to conditionally load and enable the library. This also needs a settings page entry before it can go into production along with code to disable the library when the setting is toggled off.

The enable/disable code should to be wrapped in utility function rather than being done in-line.

The enable code needs to go into InitFM3DLL() in init.c and should be similar to

If lib wanted

EnableFT2Lib()

EnableFT2Lib() will look something like

Try to load library If not loaded

complain

Else

Try to get address

If fail

complain

Else

enable remember enabled

The disable function, DisableFt2Lib(), will look something like

If enabled

Try to load library If not loaded

complain

Else

Try to get address If fail

complain

Else

disable remember disabled unload library unload library (since loaded by enable too)

For an example of how to use DosLoadModule? etc., see the code near line 1819 of misc.c.

#2 fixed Fix progress indicators so they update appropriately Steven Levine Gregg Young
Description

Seek and Scan is probably the worst

#3 fixed Allow different colors in multiple directory containers to be saved across restarts Gregg Young Gregg Young
Description

When you open multiple containers they all have the same colour. These colours hold between reboots. All addition opened directory containers take their colour from the first one.

Right now you can change their colours and they'll stick for the session, but when you close out FM/2 and restart the colours reverts to the two colour, (tree and one container), system.

1 2 3 4 5 6 7 8 9 10 11
Note: See TracQuery for help on using queries.