you are right, in the Deere1280x800-EXPERIMENTAL Skin the library is not shown at all.
The original bug is caused by the fixed size hint of QTreeView = 256.
The pSplitter resizes to size of the pLibrarySideBarPage->sizeHint() + pLibraryPage->sizeHint().
And if this sum is greater than the pTabWidget, the escaping is shown.
I have tried to override sizeHint() of pLibrarySideBar to return a width of 100.
Unfortunately the Layout did not use the sizeHint() function.
A solution could be to set the size hint from the Library tree view to its minimum Size of 84.
Hi RJ Ryan
you are right, in the Deere1280x800- EXPERIMENTAL Skin the library is not shown at all.
The original bug is caused by the fixed size hint of QTreeView = 256.
The pSplitter resizes to size of the pLibrarySideBar Page->sizeHint( ) + pLibraryPage- >sizeHint( ).
And if this sum is greater than the pTabWidget, the escaping is shown.
I have tried to override sizeHint() of pLibrarySideBar to return a width of 100.
Unfortunately the Layout did not use the sizeHint() function.
A solution could be to set the size hint from the Library tree view to its minimum Size of 84.
Do you know how?