refactor: deskflow-gui add newline after the lang is written to console

This commit is contained in:
sithlord48
2025-10-27 20:36:01 -04:00
committed by Chris Rizzitello
parent 91a82b22b2
commit a62613f219

View File

@ -65,7 +65,7 @@ int main(int argc, char *argv[])
QApplication app(argc, argv);
// Ensure the I18N object is made before strings
QTextStream(stdout) << "initial language: " << I18N::currentLanguage();
QTextStream(stdout) << "initial language: " << I18N::currentLanguage() << '\n';
// Add Command Line Options
auto helpOption = QCommandLineOption({"h", "help"}, "Display Help on the command line");