Hi. Came across strange issue. I have html page, created .qhp, .qch, .qhcp and .qhc files as usuall, but Assistant haven't displayed that page when I cliced on corresponding leaf in tree structure of assistant. After further testing where the problem could be, I figured out, that the problem is in length of html page. This test page:

Qt Code:
  1. <html>
  2. <h1>Test</h1>
  3. Test
  4. </html>
To copy to clipboard, switch view to plain text mode 

will not get displayed. Neither this one:

Qt Code:
  1. <html>
  2. <h1>Test</h1>
  3. TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest
  4. TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest
  5. TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest
  6. TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest
  7. TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest
  8. TestTestTestTestTestTestTestTestTest
  9. </html>
To copy to clipboard, switch view to plain text mode 

But after adding another character behind last "Test" the page is suddently displayed correctly. Anybody have some idea why is that? Is that a bug? I want to create really short help page telling what happens when user click Exit in my app.