Skip to content

Commit

Permalink
Change Auto Exit Camera name to better represent its functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
oRazeD committed Dec 2, 2021
1 parent 9ee2ece commit 168d564
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ def draw(self, context):
in_trim_cam = [area.spaces.active.region_3d.view_perspective for area in context.screen.areas if area.type == 'VIEW_3D'] == ['CAMERA']
row.operator("grab_doc.view_cam", text = "Leave Trim Camera" if in_trim_cam else "View Trim Camera", icon = "OUTLINER_OB_CAMERA")

col.prop(grabDoc, 'autoExitCamera', text = "Auto Switch on Exit", icon='CHECKBOX_HLT' if grabDoc.autoExitCamera else 'CHECKBOX_DEHLT')
col.prop(grabDoc, 'autoExitCamera', text = "Leave Cam on Preview Exit", icon='CHECKBOX_HLT' if grabDoc.autoExitCamera else 'CHECKBOX_DEHLT')

if grabDoc.modalState:
col.separator()
Expand Down

0 comments on commit 168d564

Please sign in to comment.