Skip to content

Commit

Permalink
Fix app instance access on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
BigRoy authored and iLLiCiTiT committed Jul 18, 2024
1 parent 5dbdc66 commit 68122de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/ayon_blender/api/ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def _process_app_events() -> Optional[float]:
return TIMER_INTERVAL

app = GlobalClass.app
if app._instance:
if app:
app.processEvents()
return TIMER_INTERVAL
return TIMER_INTERVAL
Expand Down

0 comments on commit 68122de

Please sign in to comment.