Finished Viewport

This commit is contained in:
2026-07-23 23:02:14 -07:00
parent 2be36398f7
commit 78452aaf67
4 changed files with 113 additions and 83 deletions

View File

@ -136,7 +136,10 @@ def always() -> float:
# Force ui redraw
if state.redraw_ui:
if bpy.context.screen is not None:
krom_active = bool(lnx.render_engine._active_krom_engines)
for area in bpy.context.screen.areas:
if area.type == 'VIEW_3D' and krom_active:
continue
if area.type in ('NODE_EDITOR', 'PROPERTIES', 'VIEW_3D'):
area.tag_redraw()
state.redraw_ui = False