[Bf-extensions-cvs] [712bbc60] blender2.8: Update for new icon set.

Brecht Van Lommel noreply at git.blender.org
Tue Oct 9 18:57:16 CEST 2018


Commit: 712bbc602b1566ab55ccdba9cd288b471f03a659
Author: Brecht Van Lommel
Date:   Fri Oct 5 19:09:28 2018 +0200
Branches: blender2.8
https://developer.blender.org/rBAC712bbc602b1566ab55ccdba9cd288b471f03a659

Update for new icon set.

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

M	object_color_rules.py
M	oscurart_mesh_cache_tools.py
M	space_view3d_enhanced_3d_cursor.py
M	space_view3d_paint_bprojection.py
M	space_view3d_panel_measure.py
M	space_view3d_quickPrefs.py
M	space_view3d_render_settings.py
M	space_view3d_toolshelf_menu.py
M	system_project_folder.py

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

diff --git a/object_color_rules.py b/object_color_rules.py
index 8d3d02fe..fea8c1c3 100644
--- a/object_color_rules.py
+++ b/object_color_rules.py
@@ -260,8 +260,8 @@ class OBJECT_PT_color_rules(Panel):
 
         col = row.column()
         colsub = col.column(align=True)
-        colsub.operator("object.color_rules_add", icon='ZOOMIN', text="")
-        colsub.operator("object.color_rules_remove", icon='ZOOMOUT', text="")
+        colsub.operator("object.color_rules_add", icon='ADD', text="")
+        colsub.operator("object.color_rules_remove", icon='REMOVE', text="")
 
         colsub = col.column(align=True)
         colsub.operator("object.color_rules_move", text="", icon='TRIA_UP').direction = -1
diff --git a/oscurart_mesh_cache_tools.py b/oscurart_mesh_cache_tools.py
index ee8ecf30..a28fe650 100644
--- a/oscurart_mesh_cache_tools.py
+++ b/oscurart_mesh_cache_tools.py
@@ -125,7 +125,7 @@ class OscEPc2ExporterPanel(View3DMCPanel, Panel):
 
         row = layout.column(align=1)
         row.prop(scene, "pc_pc2_folder", text="Folder")
-        row.operator("buttons.set_meshcache_folder", icon='FILESEL', text="Select Folder Path")
+        row.operator("buttons.set_meshcache_folder", icon='FILEBROWSER', text="Select Folder Path")
         row = layout.box().column(align=1)
         row.label("EXPORTER:")
         row.operator("group.linked_group_to_local", text="Linked To Local", icon="LINKED")
diff --git a/space_view3d_enhanced_3d_cursor.py b/space_view3d_enhanced_3d_cursor.py
index 25019e76..b23ab35b 100644
--- a/space_view3d_enhanced_3d_cursor.py
+++ b/space_view3d_enhanced_3d_cursor.py
@@ -3408,7 +3408,7 @@ class PseudoIDBlockBase(bpy.types.PropertyGroup):
         row.prop_menu_enum(self, "enum", text="", icon=self.icon)
         row.prop(self, "active", text="")
         if self.op_new:
-            row.operator(self.op_new, text="", icon='ZOOMIN')
+            row.operator(self.op_new, text="", icon='ADD')
         if self.op_delete:
             row.operator(self.op_delete, text="", icon='X')
 # end class
diff --git a/space_view3d_paint_bprojection.py b/space_view3d_paint_bprojection.py
index 632b5d63..751f9bc8 100644
--- a/space_view3d_paint_bprojection.py
+++ b/space_view3d_paint_bprojection.py
@@ -797,7 +797,7 @@ class BProjection(Panel):
                     col.template_ID(tex, "image", open="image.open")
                     row = box.row(align=True)
                     row.operator('object.applyimage', text="Apply image", icon='FILE_TICK')
-                    row.prop(em, "custom_c3d", text="", icon='CURSOR')
+                    row.prop(em, "custom_c3d", text="", icon='PIVOT_CURSOR')
                     row = box.row(align=True)
                     row.label(text="Location:")
                     row = box.row(align=True)
diff --git a/space_view3d_panel_measure.py b/space_view3d_panel_measure.py
index e5d2760b..c5fa71db 100644
--- a/space_view3d_panel_measure.py
+++ b/space_view3d_panel_measure.py
@@ -1088,7 +1088,7 @@ class VIEW3D_PT_measure(bpy.types.Panel):
                     row.prop(sce, "measure_panel_dist")
 
                     row = box.row()
-                    row.label(text="", icon='CURSOR')
+                    row.label(text="", icon='PIVOT_CURSOR')
                     row.label(text="", icon='ARROW_LEFTRIGHT')
                     if measureLocal(sce):
                         row.label(text="Obj. Center")
@@ -1108,7 +1108,7 @@ class VIEW3D_PT_measure(bpy.types.Panel):
                     row.prop(sce, "measure_panel_dist")
 
                     row = box.row()
-                    row.label(text="", icon='CURSOR')
+                    row.label(text="", icon='PIVOT_CURSOR')
                     row.label(text="", icon='ARROW_LEFTRIGHT')
                     row.label(text="", icon='VERTEXSEL')
 
@@ -1368,7 +1368,7 @@ class VIEW3D_PT_measure(bpy.types.Panel):
                 row.prop(sce, "measure_panel_dist")
 
                 row = box.row()
-                row.label(text="", icon='CURSOR')
+                row.label(text="", icon='PIVOT_CURSOR')
 
                 row.label(text="", icon='ARROW_LEFTRIGHT')
 
@@ -1449,7 +1449,7 @@ class VIEW3D_PT_measure(bpy.types.Panel):
                 row.prop(sce, "measure_panel_dist")
 
                 row = box.row()
-                row.label(text="", icon='CURSOR')
+                row.label(text="", icon='PIVOT_CURSOR')
                 row.label(text="", icon='ARROW_LEFTRIGHT')
                 row.label(text="Origin [0,0,0]")
 
diff --git a/space_view3d_quickPrefs.py b/space_view3d_quickPrefs.py
index 3ccf3dbc..f084cf1c 100644
--- a/space_view3d_quickPrefs.py
+++ b/space_view3d_quickPrefs.py
@@ -783,8 +783,8 @@ class PANEL(bpy.types.Panel):
 #Draw the buttons
             split = split.split()
             col = split.column()
-            col.operator("gllightpreset.action", icon="ZOOMIN", text="Add").button="add"
-            col.operator("gllightpreset.action", icon="ZOOMOUT", text="Delete").button="delete"
+            col.operator("gllightpreset.action", icon='ADD', text="Add").button="add"
+            col.operator("gllightpreset.action", icon='REMOVE', text="Delete").button="delete"
             col.operator("gllightpreset.action", icon="FILE_TICK", text="Save to Blend").button="save"
             col.operator("gllightpreset.action", icon="SORTALPHA", text="Sort").button="sort"
             col.operator("gllightpreset.action", icon="SHORTDISPLAY", text="Add Defaults").button="defaults"
diff --git a/space_view3d_render_settings.py b/space_view3d_render_settings.py
index 3ee74d5d..fc270b71 100644
--- a/space_view3d_render_settings.py
+++ b/space_view3d_render_settings.py
@@ -278,7 +278,7 @@ class RenderToolsMenu(bpy.types.Operator):
             self.layout.prop(cscene, "samples", text="Render")
             self.layout.prop(cscene, "preview_samples", text="Preview")
             self.layout.separator()
-            self.layout.prop(context.scene.render, 'use_freestyle', text="Use FreeStyle", icon="WIRE")
+            self.layout.prop(context.scene.render, 'use_freestyle', text="Use FreeStyle", icon='SHADING_WIRE')
             self.layout.separator()
             self.layout.menu(SimplifyRenderMenu.bl_idname, icon="RENDER_RESULT")
             self.layout.menu(SubsurfMenu.bl_idname, icon="MOD_SUBSURF")
@@ -306,7 +306,7 @@ class RenderToolsMenu(bpy.types.Operator):
             self.layout.prop(context.scene.render, 'use_antialiasing', text="Use Anti-aliasing", icon="ALIASED")
             self.layout.prop_menu_enum(context.scene.render, 'antialiasing_samples', text="Set Anti-Aliasing", icon="ANTIALIASED")
             self.layout.prop(context.scene.world.light_settings, 'samples', text="Ray Samples", icon="WORLD")
-            self.layout.prop(context.scene.render, 'use_freestyle', text="Use FreeStyle", icon="WIRE")
+            self.layout.prop(context.scene.render, 'use_freestyle', text="Use FreeStyle", icon='SHADING_WIRE')
             self.layout.menu(ShadeingMenu.bl_idname, icon="TEXTURE_SHADED")
             self.layout.separator()
             self.layout.menu(SimplifyRenderMenu.bl_idname, icon="RENDER_RESULT")
@@ -338,7 +338,7 @@ class AnimateRenderMenu(bpy.types.Menu):
         self.layout.separator()
         self.layout.prop(context.scene, 'frame_start', text="Start Frame", icon="COLOR_GREEN")
         self.layout.prop(context.scene, 'frame_end', text="End Frame", icon="COLOR_RED")
-        self.layout.prop(context.scene, 'frame_step', text="Frame Step", icon="ALIGN")
+        self.layout.prop(context.scene, 'frame_step', text="Frame Step", icon='CENTER_ONLY')
         self.layout.prop(context.scene.render, 'fps', text="FPS", icon="AUTO")
 
 
@@ -377,7 +377,7 @@ class RenderSettingsPanel(bpy.types.Panel):
             self.layout.prop(cscene, "samples", text="Render")
             self.layout.prop(cscene, "preview_samples", text="Preview")
             self.layout.separator()
-            self.layout.prop(context.scene.render, 'use_freestyle', text="Use FreeStyle", icon="WIRE")
+            self.layout.prop(context.scene.render, 'use_freestyle', text="Use FreeStyle", icon='SHADING_WIRE')
             self.layout.separator()
             self.layout.menu(SimplifyRenderMenu.bl_idname, icon="RENDER_RESULT")
             self.layout.menu(SubsurfMenu.bl_idname, icon="MOD_SUBSURF")
@@ -405,7 +405,7 @@ class RenderSettingsPanel(bpy.types.Panel):
             self.layout.prop(context.scene.render, 'use_antialiasing', text="Use Anti-aliasing", icon="ALIASED")
             self.layout.prop_menu_enum(context.scene.render, 'antialiasing_samples', text="Set Anti-Aliasing", icon="ANTIALIASED")
             self.layout.prop(context.scene.world.light_settings, 'samples', text="Ray Samples", icon="WORLD")
-            self.layout.prop(context.scene.render, 'use_freestyle', text="Use FreeStyle", icon="WIRE")
+            self.layout.prop(context.scene.render, 'use_freestyle', text="Use FreeStyle", icon='SHADING_WIRE')
             self.layout.menu(ShadeingMenu.bl_idname, icon="TEXTURE_SHADED")
             self.layout.separator()
             self.layout.menu(SimplifyRenderMenu.bl_idname, icon="RENDER_RESULT")
diff --git a/space_view3d_toolshelf_menu.py b/space_view3d_toolshelf_menu.py
index d1aa02e1..e893e542 100644
--- a/space_view3d_toolshelf_menu.py
+++ b/space_view3d_toolshelf_menu.py
@@ -64,8 +64,8 @@ class VIEW3D_PT_Toolshelf_menu(View3DPanel, Panel):
             layout.operator("wm.search_menu", text="Search", icon='VIEWZOOM')
             layout.menu("VIEW3D_MT_AddMenu2", icon='OBJECT_DATAMODE')
             layout.menu("VIEW3D_MT_View_Directions2", icon='ZOOM_ALL')
-            layout.menu("VIEW3D_MT_View_Navigation2", icon='ROTATE')
-            layout.menu("VIEW3D_MT_View_Toggle2", icon='SPLITSCREEN')
+            layout.menu("VIEW3D_MT_View_Navigation2", icon='PIVOT_BOUNDBOX')
+            layout.menu("VIEW3D_MT_View_Toggle2", icon='WORKSPACE')
             layout.operator("view3d.snap_cursor_to_center",
                             text="Cursor to Center")
             layout.operator("view3d.snap_cursor_to_grid",
@@ -91,9 +91,9 @@ class VIEW3D_PT_Toolshelf_menu(View3DPanel, Panel):
             UseSeparator(self, context)
          

@@ Diff output truncated at 10240 characters. @@



More information about the Bf-extensions-cvs mailing list