Hello there
Here's my problem: I've got this application: aze.jpg
My left widget is a TabWidget in which I can add some textEdits. Those textEdit adapt their size to the content they have (they grow bigger each time you write something in them). My problem is the tab widget I got is far too small and I would like to be able to scroll it when my textEdit becomes to big to be fully displayed in it.

I've tried to create a QScrollArea but the scrollbars are not showing up:
Qt Code:
  1. //here's the constructor
  2. scrollArea = new QScrollArea(this); //i've created a QScrollArea* in my .h
  3. scrollArea->setWidgetResizable(true);
  4. ui.Onglets->insertTab(0, scrollArea, "Kayaaa");//i try to add my scrollArea to my tabWidget but it creates a new tab and I would like the scrollArea to be in my existing tabs
To copy to clipboard, switch view to plain text mode