[Bf-blender-cvs] [3a605ed0442] greasepencil-object: Fix print about removed properties

Joshua Leung noreply at git.blender.org
Fri May 4 16:13:14 CEST 2018


Commit: 3a605ed044222e2e084ad3100d5c34e86f84b8f0
Author: Joshua Leung
Date:   Fri May 4 16:13:10 2018 +0200
Branches: greasepencil-object
https://developer.blender.org/rB3a605ed044222e2e084ad3100d5c34e86f84b8f0

Fix print about removed properties

* show_only_render has been removed. Instead, this is now handled through the
  overlays popovers. Therefore, we no longer need (or should have) a dedicated
  button for this.

* Removed also the lock camera button. This shouldn't be here in the first place,
  as it was a dedicated workflow-specific hack added for the Hero production workflow
  only.

===================================================================

M	release/scripts/startup/bl_ui/space_view3d.py

===================================================================

diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index ad98028c548..9a575d4b02c 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -171,8 +171,6 @@ class VIEW3D_HT_header(Header):
             view = context.space_data
             row = layout.row(align=True)
             row.prop(view, "use_gpencil_paper", text="", icon='GHOST')
-            row.prop(view, "show_only_render", text="", icon='IMAGE_COL')
-            row.prop(view, "lock_camera", text="", icon='CAMERA_DATA')
 
             layout.prop(gpd, "use_onion_skinning", text="Onion Skins", icon='PARTICLE_PATH')



More information about the Bf-blender-cvs mailing list