Skip to content

Commit b90ab4d

Browse files
authored
Fix suggested project path (#5461)
1 parent 3b4b631 commit b90ab4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/webots/gui/WbNewProjectWizard.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ QString WbNewProjectWizard::proposeNewProjectPath() const {
4848
path = WbPreferences::instance()->value("Directories/projects").toString();
4949
if (!path.isEmpty()) {
5050
if (WbFileUtil::isDirectoryWritable(path))
51-
path += +"/my_project";
51+
path += "my_project";
5252
else
5353
path = ""; // no valid default path found
5454
}

0 commit comments

Comments
 (0)