Peter Kümmel wrote:
- new document
- insert 1x1 table
- move curser into the table
- press a key

OK, thanks, I can confirm this.

The problem is as JMarc said a missing updateMetric in the insettabular. I don't understand why it worked in the past. I seem to remember that it worked two months ago. Putting the update in InsetTabular::doDispatch() like below doesn't seem to help:
        
                cell(cur.idx())->dispatch(cur, cmd);
                break;
        }

+       cur.bv().updateMetrics();
        resetPos(cur);
        InsetTabularMailer(*this).updateDialog(&cur.bv());


Abdel.

Reply via email to