InputEditField in cell with DisplayText starting with '+'

  • WPTools 6.13

    This works fine, the '+' is showing:

    Code
    Editor->InputEditField("name", "+value");

    This doesn't work, the '+' is not showing (the EmbeddedText does however contain the '+'):

    Code
    TParagraph* table(Editor->FirstPar->AppendNewPar(false));
    table->ParagraphType = wpIsTable;
    TParagraph* row(table->AppendNewRow(true));
    TParagraph* cell(row->AppendNewCell(true));
    Editor->ActiveParagraph = cell;
    Editor->InputEditField("name", "+value");

    So, what's happening here?

    Regards
    patrik.nyborg(a)genicore.se[/code]