2006-06-22, 08:00 PM
I am creating a plugin and need to update on screen the current track position so I implmented needsRendering as so:
bool IMenuTask.needsRendering()
{
return true;
}
yet render is only called when a keyboard event occurs. I thought since I am returning true render would be called about once a second.
bool IMenuTask.needsRendering()
{
return true;
}
yet render is only called when a keyboard event occurs. I thought since I am returning true render would be called about once a second.