> - Create a 5x5 table and insert anything in the first row; copy this whole row or >part of it; > paste it into the empty second row -> it's not possible to put the cursor anywhere >in all > cells of the new row, it jumps always in front of the text
bug #145 > - Insert a note into an empty doc; insert an ERT into the note -> the note width >changes on screen! this is bug #147 > Click with the _mouse_ past the ERT (but still within the note) -> the cursor is >set past the ERT but the > "TeX" button in the tool bar does not work (the corresponding menu entry >"Insert->TeX" works) weird, they both use the same lyxfunc. bug #148 > - Create a document with a note inset, two ERTs (with dummy text) inside the note >and some plain text > (*nothing* else); perform "undo" (until empty doc) and "redo" again -> LyX crashes >(difficult to reproduce; > I hope the backtrace gives some useful information) I can't reproduce, but the order of redo's here is crazy, I even get an extra ERT at one point. bug #149 > - When starting LyX for the first time, Screen DPI (in the preferences dialog) is >set to "nan". It is 75 for me, after move ~/.lyx to ~/.lyxa ... > - When changing some font property for a set of table cells, the cell selection is >revoked. This is because of the updateLocal of type INIT which clears the selection. Juergen ?? > - Enter math mode; enter "1" twice -> different font > > - Create a table and place a math formula "1*1" into one of its cells; try to select >the > _whole_ formula with the mouse -> won't work > > - Appending a column after the last column causes a freed memory access, #108 > (sorry guys, I get this report with njamd even for a simple 1x1 table): > > #0 0x080d3fe7 in LyXTabular::AppendColumn (this=0x75c15f98, cell=0) at >tabular.C:308 Juergen, just look at the code. 307 if ((column + 1) == columns_ || 308 c_info[i][column + 2].multicolumn != CELL_PART_OF_MULTICOLUMN) { 309 c_info[i][column + 1].multicolumn = LyXTabular::CELL_NORMAL; 310 } here's the debug output : column is 0 columns_ 2 c_info size 1 i 0 c_info[i] size 2 so we reach the second clause in the || (since 1 != 2) which is then an access past the array. Don't we need to use columns_ - 1 ? > - "Wide figures" do not work with option "Here, definitely" (at least in the article >class > without additional flags/options). Therefore the option should be disabled for >them. isn't this patch applied yet ? > - Place an ERT into a figure float; collapse it; place a minipage next to it > -> the green background is painted beyond the right border of the minipage > > - Szenario: An empty doc with an empty minipage; when editing plain text in front of >the minipage > I got the following message: > > #5 0x080cde2b in Paragraph::Pimpl::getChar (this=0x6e344fac, pos=57) at >paragraph_pimpl.C:88 more details please, a step by step is ideal. > - Create new "article (koma-script)" document; insert a minipage; add three pars of >text > into the minipage; set the second par to "minisec" layout; set document to "SGML >article"; > remove all error boxes -> error box inside the minipage is not cleared on screen please check this. regards john