forked from qt-creator/qt-creator
Fixes wrong internal folder path for first level project subfolder
Task-number: QTCREATORBUG-1631
This commit is contained in:
@@ -308,7 +308,7 @@ struct InternalNode
|
||||
#endif
|
||||
QStringListIterator it(parts);
|
||||
InternalNode *currentNode = this;
|
||||
QString path = (isRelative ? projectDir : "");
|
||||
QString path = (isRelative ? projectDirWithSeparator : "");
|
||||
while (it.hasNext()) {
|
||||
const QString &key = it.next();
|
||||
if (it.hasNext()) { // key is directory
|
||||
|
||||
Reference in New Issue
Block a user