Good to know.
Would you mind assisting with a piece of code?
Here's what I was able to come up with but it's not displaying on click. It compiles but it doesnt' work. Could you help me get it to display?
Qt Code:
QFileSystemModel *model = new QFileSystemModel(this); model->setResolveSymlinks(true); this->setVisible(model);To copy to clipboard, switch view to plain text mode
This doesn't make much sense. What do you expect it to do?
I ended up getting it working. I thought that would set the model visible, no?
Here it is:
Qt Code:
QFileSystemModel *model = new QFileSystemModel; model->setRootPath(""); tree->setModel(model); tree->setWindowTitle(title); tree->show();To copy to clipboard, switch view to plain text mode
Bookmarks