QTextBrowser, horizontal Scrollbal not appearing
Hello!
I have in my code this:
Code:
ui->text_browser->append("ABCDEFGHIJKLMNOPQRSTUVWXYZABCABCDEFGHIJKLMNOPQRSTUVWXYZABCDEFGHIJKLMNOPQRSTUVWXYZABCDEFGHIJKLMNOPQRSTUVWXYZ");
and it results into this:
http://i.imgur.com/1CLMh.png
As you can see, even if I've checked to scroll horizontally when this should be done, the above long string goes below and occupies 3 whole lines, while it should take only 1 which could scroll. Bottom horizontal scrollback never appears.
Even if I select the horizontal scrollbar to be always present, it does nothing, same result with a scrollback in the bottom:
http://i.imgur.com/4D9T2.png
Am I missing something or this is a bug?
Re: QTextBrowser, horizontal Scrollbal not appearing
Set lineWrapMode to NoWrap.
Re: QTextBrowser, horizontal Scrollbal not appearing