mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 08:54:53 +01:00
fix state changes
This commit is contained in:
parent
06e042b306
commit
42568bffdb
1 changed files with 5 additions and 1 deletions
|
|
@ -288,7 +288,11 @@ class PublishFrame(QtWidgets.QFrame):
|
|||
self.message_label.setVisible(visible)
|
||||
|
||||
def _set_success_property(self, state=None):
|
||||
self.info_frame.setProperty("state", str(state or ""))
|
||||
if state is None:
|
||||
state = ""
|
||||
else:
|
||||
state = str(state)
|
||||
self.info_frame.setProperty("state", state)
|
||||
self.info_frame.style().polish(self.info_frame)
|
||||
|
||||
def _on_copy_log(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue