Skip to content
Snippets Groups Projects
Commit ba7827ff authored by Thomas Dinges's avatar Thomas Dinges
Browse files

* Added missing tool tips for netrender slave black-/whitelist.

Reported by Tobias Kummer. Thanks! :) 
parent 95e45403
No related branches found
No related tags found
No related merge requests found
...@@ -229,7 +229,7 @@ class RENDER_OT_netclientstatus(bpy.types.Operator): ...@@ -229,7 +229,7 @@ class RENDER_OT_netclientstatus(bpy.types.Operator):
return self.execute(context) return self.execute(context)
class RENDER_OT_netclientblacklistslave(bpy.types.Operator): class RENDER_OT_netclientblacklistslave(bpy.types.Operator):
'''Operator documentation text, will be used for the operator tooltip and python docs.''' '''Exclude from rendering, by adding slave to the blacklist.'''
bl_idname = "render.netclientblacklistslave" bl_idname = "render.netclientblacklistslave"
bl_label = "Client Blacklist Slave" bl_label = "Client Blacklist Slave"
...@@ -259,7 +259,7 @@ class RENDER_OT_netclientblacklistslave(bpy.types.Operator): ...@@ -259,7 +259,7 @@ class RENDER_OT_netclientblacklistslave(bpy.types.Operator):
return self.execute(context) return self.execute(context)
class RENDER_OT_netclientwhitelistslave(bpy.types.Operator): class RENDER_OT_netclientwhitelistslave(bpy.types.Operator):
'''Operator documentation text, will be used for the operator tooltip and python docs.''' '''Remove slave from the blacklist.'''
bl_idname = "render.netclientwhitelistslave" bl_idname = "render.netclientwhitelistslave"
bl_label = "Client Whitelist Slave" bl_label = "Client Whitelist Slave"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment