mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
AE - fix unicode icon in composition name
Unicode characters causes an issue on specific rendering environments, clean it up for safety.
This commit is contained in:
parent
3152d9fc71
commit
026c732474
5 changed files with 55 additions and 7 deletions
|
|
@ -49,7 +49,7 @@ class CreateRender(openpype.api.Creator):
|
|||
self.data["uuid"] = item.id # for SubsetManager
|
||||
stub.imprint(item, self.data)
|
||||
stub.set_label_color(item.id, 14) # Cyan options 0 - 16
|
||||
stub.rename_item(item, stub.PUBLISH_ICON + self.data["subset"])
|
||||
stub.rename_item(item.id, stub.PUBLISH_ICON + self.data["subset"])
|
||||
|
||||
def _show_msg(self, txt):
|
||||
msg = Qt.QtWidgets.QMessageBox()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue