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:
authorWilliam Reynish <billrey@me.com>2020-04-17 21:43:12 +0300
committerWilliam Reynish <billrey@me.com>2020-04-17 21:43:12 +0300
commitf2acfb460f991924917113ca085e0dd9b0babed7 (patch)
tree571620918bdda1280c19eb687007e9deebc5a36c /release
parenta2f075b9969a1164417a5c491a30eae9c31642db (diff)
UI: Add separator after Local Camera row
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index b3cf06b77b3..9a46d7a6e82 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -5407,9 +5407,7 @@ class VIEW3D_PT_view3d_properties(Panel):
subcol.prop(view, "clip_start", text="Clip Start")
subcol.prop(view, "clip_end", text="End")
- subcol.separator()
-
- col = layout.column()
+ layout.separator()
col = layout.column(align=False, heading="Local Camera")
col.use_property_decorate = False
@@ -5420,9 +5418,11 @@ class VIEW3D_PT_view3d_properties(Panel):
sub.enabled = view.use_local_camera
sub.prop(view, "camera", text="")
- subcol = col.column(align=True)
- subcol.prop(view, "use_render_border")
- subcol.active = view.region_3d.view_perspective != 'CAMERA'
+ layout.separator()
+
+ col = layout.column(align=True)
+ col.prop(view, "use_render_border")
+ col.active = view.region_3d.view_perspective != 'CAMERA'
class VIEW3D_PT_view3d_lock(Panel):