Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Antalik <richardantalik@gmail.com>2021-10-21 08:49:12 +0300
committerRichard Antalik <richardantalik@gmail.com>2021-10-21 08:49:12 +0300
commit33d6d7c6e33fe0380a6e8cc186dd4eeef5c5153a (patch)
treee9d3a05266c12ea8b700d2e88b6856ec9918945f /release
parentec31f3174936a69f85c1115d32672189b8093a47 (diff)
VSE: Add 2D cursor overlay option
Since 2D cursor will be used rarely in VSE and it is adding visual noise, it will be hidden by default. Reviewed By: campbellbarton Differential Revision: https://developer.blender.org/D12933
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_sequencer.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py
index 53e40257d9f..8d1b43f91f8 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -291,6 +291,7 @@ class SEQUENCER_PT_preview_overlay(Panel):
layout.active = st.show_overlays
layout.prop(overlay_settings, "show_image_outline")
+ layout.prop(overlay_settings, "show_2d_cursor")
layout.prop(ed, "show_overlay_frame", text="Frame Overlay")
layout.prop(overlay_settings, "show_safe_areas", text="Safe Areas")
layout.prop(overlay_settings, "show_metadata", text="Metadata")