Font problem hangs the servoy solution

If there is a font which we used in servoy styles, but the font is not present in the system, then the solution hangs.

It should not happen like this, if the font is not there then servoy should display the characters as forign characters.

I am also having the same issue. Please see my style sheet below:

field
{
background-color: #e9e8e8;
border-style: inset;
font: 11pt “Arial Unicode MS, Arial, Helvetica, sans-serif”;
text-align: left;
margin: 1px 2px 1px 1px;
}

If the font “Arial Unicode MS” is not available in the system, instead of using next font, the system hangs.

Please help fix this issue.

Thanks a lot.

faheemhameed:
I am also having the same issue. Please see my style sheet below:

field
{
background-color: #e9e8e8;
border-style: inset;
font: 11pt “Arial Unicode MS, Arial, Helvetica, sans-serif”;
text-align: left;
margin: 1px 2px 1px 1px;
}

Have you tried

font: 11pt “Arial Unicode MS”, Arial, Helvetica, sans-serif;

? I thought quotes were only needed for font names containing spaces…