From 6df7aa36b560ecb6f6ed3837999b356bf2a2fcab Mon Sep 17 00:00:00 2001 From: Lyle Tafoya Date: Sun, 10 Dec 2017 13:06:06 -0800 Subject: [PATCH] Only create mudlet-data symlink on first launch. This enables users to (#1458) delete this symlink if they do not want it. --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 0ea6d1ea1fb..037e399daac 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -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