I have a project with subprojects (and some sub-sub-projects).
main.png

The projects share a single BuildInfo.pri file (for setting up compiler options), as well as a LibraryLinkers.pri and a DebugFixer.pri
They are included like this:
Qt Code:
  1. #Common.pro
  2. include(../BuildInfo.pri)
  3. include(../LibraryLinkers.pri)
To copy to clipboard, switch view to plain text mode 

This means, in each of the subproject hierarchies the same project is displayed:
main2.png

It'd be nice if it only got displayed once... But I realize that's a long-shot.

I'd be quite happy if folders with only a single .pri on them just displayed the .pri instead of displaying the folder.
main3.png

I wouldn't mind at all if the above screenshot displayed:
Qt Code:
  1. ... v [Common]
  2. ... ... Common.pro
  3. ... ... BuildInfo.pri
  4. ... ... DebugFixer.pri
  5. ... ... LibraryLinkers.pri
  6. ... ... > [Headers]
  7. ... ... > [Sources]
To copy to clipboard, switch view to plain text mode 

I could check the "Simplify Tree" option, but that takes the source and header files out of all their sub-directories and intermingles them.

Is there something else I could do to make it display simpler? Friendly help is appreciated!

Note: I am currently using QtCreator 2.6.2 based on Qt 5.0.1 released January 30th, 2013.
I know there are more recent versions of QtCreator and the Qt API, and I tend to update when it is convenient for my project rather than every time a new version is released, so maybe the later versions display better.

...so, uh, do the later versions improve this any? Screenshots plz? =)