[Bf-blender-cvs] [9b06c23dc3e] tmp_hair_curves: Remove unused properties_hair.py file.

Lukas Tönne noreply at git.blender.org
Sat Jun 30 11:56:30 CEST 2018


Commit: 9b06c23dc3e0e88a12e2b1ee498b4ffdbc40245a
Author: Lukas Tönne
Date:   Sat Jun 30 10:20:18 2018 +0100
Branches: tmp_hair_curves
https://developer.blender.org/rB9b06c23dc3e0e88a12e2b1ee498b4ffdbc40245a

Remove unused properties_hair.py file.

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

M	release/scripts/startup/bl_ui/__init__.py
D	release/scripts/startup/bl_ui/properties_hair.py

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

diff --git a/release/scripts/startup/bl_ui/__init__.py b/release/scripts/startup/bl_ui/__init__.py
index 1518119eadc..da9054fb681 100644
--- a/release/scripts/startup/bl_ui/__init__.py
+++ b/release/scripts/startup/bl_ui/__init__.py
@@ -42,7 +42,6 @@ _modules = [
     "properties_data_lightprobe",
     "properties_data_speaker",
     "properties_data_workspace",
-    "properties_hair",
     "properties_mask_common",
     "properties_material",
     "properties_object",
diff --git a/release/scripts/startup/bl_ui/properties_hair.py b/release/scripts/startup/bl_ui/properties_hair.py
deleted file mode 100644
index 2d234bf3f94..00000000000
--- a/release/scripts/startup/bl_ui/properties_hair.py
+++ /dev/null
@@ -1,40 +0,0 @@
-# ##### BEGIN GPL LICENSE BLOCK #####
-#
-#  This program is free software; you can redistribute it and/or
-#  modify it under the terms of the GNU General Public License
-#  as published by the Free Software Foundation; either version 2
-#  of the License, or (at your option) any later version.
-#
-#  This program is distributed in the hope that it will be useful,
-#  but WITHOUT ANY WARRANTY; without even the implied warranty of
-#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#  GNU General Public License for more details.
-#
-#  You should have received a copy of the GNU General Public License
-#  along with this program; if not, write to the Free Software Foundation,
-#  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-#
-# ##### END GPL LICENSE BLOCK #####
-
-# <pep8 compliant>
-import bpy
-from bpy.types import UIList
-
-class HAIR_UL_groups(UIList):
-    def draw_item(self, context, layout, data, item, icon, active_data, active_propname, index):
-        group = item
-        if self.layout_type in {'DEFAULT', 'COMPACT'}:
-            layout.prop(group, "name", text="", emboss=False, icon_value=icon)
-        elif self.layout_type == 'GRID':
-            layout.alignment = 'CENTER'
-            layout.label(text="", icon_value=icon)
-
-
-classes = (
-    HAIR_UL_groups,
-)
-
-if __name__ == "__main__":  # only for live edit.
-    from bpy.utils import register_class
-    for cls in classes:
-        register_class(cls)



More information about the Bf-blender-cvs mailing list