Skip to content
Snippets Groups Projects
Commit b4fce25e authored by Aaron Carlisle's avatar Aaron Carlisle
Browse files

Cleanup: Do not use camel case for "Freestyle"

parent 0aa23a4d
No related branches found
No related tags found
No related merge requests found
...@@ -278,7 +278,7 @@ class RenderToolsMenu(bpy.types.Operator): ...@@ -278,7 +278,7 @@ class RenderToolsMenu(bpy.types.Operator):
self.layout.prop(cscene, "samples", text="Render") self.layout.prop(cscene, "samples", text="Render")
self.layout.prop(cscene, "preview_samples", text="Preview") self.layout.prop(cscene, "preview_samples", text="Preview")
self.layout.separator() self.layout.separator()
self.layout.prop(context.scene.render, 'use_freestyle', text="Use FreeStyle") self.layout.prop(context.scene.render, 'use_freestyle', text="Use Freestyle")
self.layout.separator() self.layout.separator()
self.layout.menu(SimplifyRenderMenu.bl_idname) self.layout.menu(SimplifyRenderMenu.bl_idname)
self.layout.menu(SubsurfMenu.bl_idname) self.layout.menu(SubsurfMenu.bl_idname)
...@@ -349,7 +349,7 @@ class IMAGE_PT_RenderSettingsPanel(bpy.types.Panel): ...@@ -349,7 +349,7 @@ class IMAGE_PT_RenderSettingsPanel(bpy.types.Panel):
self.layout.prop(cscene, "samples", text="Render") self.layout.prop(cscene, "samples", text="Render")
self.layout.prop(cscene, "preview_samples", text="Preview") self.layout.prop(cscene, "preview_samples", text="Preview")
self.layout.separator() self.layout.separator()
self.layout.prop(context.scene.render, 'use_freestyle', text="Use FreeStyle") self.layout.prop(context.scene.render, 'use_freestyle', text="Use Freestyle")
self.layout.separator() self.layout.separator()
self.layout.menu(SimplifyRenderMenu.bl_idname) self.layout.menu(SimplifyRenderMenu.bl_idname)
self.layout.menu(SubsurfMenu.bl_idname) self.layout.menu(SubsurfMenu.bl_idname)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment