From 80951bce78279a5e306983962b7367b7e1735fa8 Mon Sep 17 00:00:00 2001 From: Osmium Sorcerer Date: Tue, 24 Mar 2026 23:34:51 +0000 Subject: CRLF to LF in append_to_file --- src/text_file_functions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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(); -- cgit