mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
change separator of report copy
This commit is contained in:
parent
ad28ea8121
commit
280e4fe0ca
1 changed files with 2 additions and 1 deletions
|
|
@ -132,7 +132,8 @@ class ErrorMessageBox(QtWidgets.QDialog):
|
|||
self.close()
|
||||
|
||||
def _on_copy_report(self):
|
||||
report_text = (10 * "*").join(self._report_data)
|
||||
sep = "\n{}\n".format(10 * "*")
|
||||
report_text = sep.join(self._report_data)
|
||||
|
||||
mime_data = QtCore.QMimeData()
|
||||
mime_data.setText(report_text)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue