We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b511499 commit 53b162eCopy full SHA for 53b162e
fun_ui.py
@@ -122,6 +122,13 @@ def limitinfo(self, context):
122
col.label("Slowest: %d" % mindist)
123
col = row.column(align=True)
124
col.label("Fastest: %d" % maxdist)
125
+ row = bcol.row(align=True)
126
+ col = row.column(align=True)
127
+ laststroke = fun_script.last_stroke(seq, scene.frame_current)
128
+ if laststroke is not None:
129
+ up = fun_script.frame_to_ms(laststroke[1]["frame"])
130
+ down = fun_script.frame_to_ms(laststroke[2]["frame"])
131
+ col.label("Last stroke: %d+%d=%d ms" % (up, down, up+down))
132
133
def draw(self, context):
134
self.limitinfo(context)
0 commit comments