1
0
Эх сурвалжийг харах

Merge pull request #3295 from WizardCM/log-viewer-tabs-spaces

UI: Render tabs and spaces in Log Viewer
Jim 5 жил өмнө
parent
commit
529c0cf2a3
1 өөрчлөгдсөн 3 нэмэгдсэн , 1 устгасан
  1. 3 1
      UI/log-viewer.cpp

+ 3 - 1
UI/log-viewer.cpp

@@ -133,7 +133,9 @@ void OBSLogViewer::AddLine(int type, const QString &str)
 
 	QTextCursor newCursor = textArea->textCursor();
 	newCursor.movePosition(QTextCursor::End);
-	newCursor.insertHtml(msg + QStringLiteral("<br>"));
+	newCursor.insertHtml(
+		QStringLiteral("<pre style=\"white-space: pre-wrap\">") + msg +
+		QStringLiteral("<br></pre>"));
 
 	if (bottomScrolled)
 		scroll->setValue(scroll->maximum());