forked from qt-creator/qt-creator
Merge remote-tracking branch 'origin/8.0'
Conflicts: .github/workflows/build_cmake.yml src/plugins/qmldesigner/components/connectioneditor/dynamicpropertiesmodel.cpp src/plugins/qmldesigner/components/materialeditor/materialeditorview.h src/plugins/qmldesigner/components/propertyeditor/propertyeditorqmlbackend.cpp src/plugins/qmldesigner/designercore/model/model.cpp Change-Id: I111b9140375b894a5487cc012b17cc32100bdb8d
This commit is contained in:
@@ -406,7 +406,7 @@ void VcsOutputWindow::append(const QString &text, MessageStyle style, bool silen
|
||||
|
||||
void VcsOutputWindow::appendError(const QString &text)
|
||||
{
|
||||
append(text.endsWith('\n') ? text : text + '\n', Error, false);
|
||||
append((text.endsWith('\n') || text.endsWith('\r')) ? text : text + '\n', Error, false);
|
||||
}
|
||||
|
||||
void VcsOutputWindow::appendWarning(const QString &text)
|
||||
|
||||
Reference in New Issue
Block a user