We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95ca276 commit a5b71c9Copy full SHA for a5b71c9
1 file changed
fun_ui.py
@@ -142,7 +142,8 @@ def draw(self, context):
142
row = bcol.row(align=True)
143
row.alignment = 'EXPAND'
144
if x == 0 or x == 100:
145
- row.operator("funscript.position", text=str(x)).launchPosition=x
+ label = "%d (%s)" % (x, "Up" if x == 100 else "Down")
146
+ row.operator("funscript.position", text=label).launchPosition=x
147
else:
148
for i in range(x,x+30,10):
149
row.operator("funscript.position", text=str(i)).launchPosition=i
0 commit comments