[Bf-blender-cvs] [3037acf3756] blender2.8: GP: Remove show lines from Pixelate effect

Antonioya noreply at git.blender.org
Fri Sep 28 17:25:46 CEST 2018


Commit: 3037acf3756591baff40defbc2ca90064f12ac96
Author: Antonioya
Date:   Fri Sep 28 17:20:00 2018 +0200
Branches: blender2.8
https://developer.blender.org/rB3037acf3756591baff40defbc2ca90064f12ac96

GP: Remove show lines from Pixelate effect

The grid lines get a weird result and it's better keep disabled. Maybe in the future we implement a new shader with a full grid.

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

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

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

diff --git a/release/scripts/startup/bl_ui/properties_data_shaderfx.py b/release/scripts/startup/bl_ui/properties_data_shaderfx.py
index 3798a273e09..1c2682e4220 100644
--- a/release/scripts/startup/bl_ui/properties_data_shaderfx.py
+++ b/release/scripts/startup/bl_ui/properties_data_shaderfx.py
@@ -91,12 +91,6 @@ class DATA_PT_shader_fx(ShaderFxButtonsPanel, Panel):
     def FX_PIXEL(self, layout, fx):
         layout.prop(fx, "size", text="Size")
 
-        layout.prop(fx, "use_lines", text="Display Lines")
-
-        col = layout.column()
-        col.enabled = fx.use_lines
-        col.prop(fx, "color")
-
     def FX_RIM(self, layout, fx):
         layout.prop(fx, "offset", text="Offset")



More information about the Bf-blender-cvs mailing list