aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/text_file_functions.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/text_file_functions.cpp b/src/text_file_functions.cpp
index 7d80b4e..c6bd2db 100644
--- a/src/text_file_functions.cpp
+++ b/src/text_file_functions.cpp
@@ -122,7 +122,7 @@ bool AOApplication::append_to_file(QString p_text, QString p_file, bool make_dir
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
out.setCodec("UTF-8");
#endif
- out << "\r\n" << p_text;
+ out << "\n" << p_text;
f_log.flush();
f_log.close();