Skip to content

Commit

Permalink
Only create mudlet-data symlink on first launch. This enables users to (
Browse files Browse the repository at this point in the history
Mudlet#1458)

delete this symlink if they do not want it.
  • Loading branch information
Lyle-Tafoya authored and vadi2 committed Dec 10, 2017
1 parent 7456dc1 commit 6df7aa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ int main(int argc, char* argv[])
}
#else
QFile linkFile(homeLink);
if (!linkFile.exists()) {
if (!linkFile.exists() && first_launch) {
QFile::link(homeDirectory, homeLink);
}
#endif
Expand Down

0 comments on commit 6df7aa3

Please sign in to comment.