Add a toggle button to display motion tracker previews in grayscale.
This commit is contained in:
@@ -353,9 +353,15 @@ class CLIP_PT_track(Panel):
|
||||
layout.template_track(sc, "scopes")
|
||||
|
||||
row = layout.row(align=True)
|
||||
row.prop(act_track, "use_red_channel", text="R", toggle=True)
|
||||
row.prop(act_track, "use_green_channel", text="G", toggle=True)
|
||||
row.prop(act_track, "use_blue_channel", text="B", toggle=True)
|
||||
sub = row.row()
|
||||
sub.prop(act_track, "use_red_channel", text="R", toggle=True)
|
||||
sub.prop(act_track, "use_green_channel", text="G", toggle=True)
|
||||
sub.prop(act_track, "use_blue_channel", text="B", toggle=True)
|
||||
|
||||
row.separator()
|
||||
|
||||
sub = row.row()
|
||||
sub.prop(act_track, "preview_grayscale", text="B/W", toggle=True)
|
||||
|
||||
layout.separator()
|
||||
|
||||
|
Reference in New Issue
Block a user