Skip to content

Commit

Permalink
support drawing while scrubbing
Browse files Browse the repository at this point in the history
  • Loading branch information
yamahigashi committed Feb 27, 2018
1 parent faac54d commit 5659d65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plug-ins/sceneRenderOverride.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def execute(self, context):
def addUIDrawables(self, drawManager, frameContext):
# type: (omui.MUIDrawManager, omr.MFrameContext) -> bool

if not omani.MAnimControl.isPlaying():
if (not omani.MAnimControl.isPlaying() and not omani.MAnimControl.isScrubbing()):
return False

target = self._getTargetDagPath()
Expand Down

0 comments on commit 5659d65

Please sign in to comment.