>>>>> "Helge" == Helge Hafting <[EMAIL PROTECTED]> writes:
Helge> It has been a while since I had a crash or malfunction to Helge> report. So here is the biggest problem currently: Helge> Numbering of subsubsections are displayed wrong in lyx. I have Helge> set things up so chapters, sections and subsections are Helge> numbered, and the output reflects that. But inside lyx, the Helge> subsubsections are also numbered and that is irritating to look Helge> at. They should be unnumbered, as they are in the output. It is Helge> nice that lyx 1.4 shows the correct numbering inside lyx, but Helge> it is a bit overdone when even unnumbered section levels gets Helge> numbers. This is indeed a problem with the new counter code. Helge> Also, the dialog for setting the level for numbering is screwed Helge> up. The sliders actually work, but now shows this: Helge> Moving the sliders simply move the yes/no barrier up and down. Helge> But the elements are not in correct order! I believe the Helge> correct order is something like: Part Chapter Section Helge> Subsection Subsubsection paragraph subparagraph What happens is that the QListView by default sorts on the first column. This means that the items inserted in the list are set in alphabetical order, and the setSorting(-1) which is done later happens too late. I guess what should be done is to remove the individual entries from the QListView in NumberingModuleBase.ui, and add them by hand _after_ setting sorting to -1. Unfortunately, I do not have access to qt2 designer. Juergen, do you think you can take a look at that? JMarc