Hi,

I am using QTextBrowser to display some information like its having Title in Bold and then few bullet points after the title.

I am able to create the title in BOLD , then .append(NULL) to go to next line.

QTextListFormat::Style style = QTextListFormat::ListDisc; is used to create the bullet points and after each point I am doing textBrowser.append(NULL); to goto the next line.

But now the problem is I just want to insert on blank line after each bullet point text line.If I use .append(NULL) it will insert the blank line along with the bulett.

I Hope there should some way to increase the gap between two lines.
Thanks..