From ccedb7cbb18b5feabac7123858348618d8e0366c Mon Sep 17 00:00:00 2001 From: Ines Almeida Date: Mon, 3 Oct 2016 19:29:41 +0200 Subject: [PATCH] Fix operator descriptions ending in '.' By default, blender will take the operator class description comment as the description for the UI tooltip, which should not have a trailing dot. I duplicated the descriptions into an explicit bl_description to have a clear distinction between user UI and coder comment, but simply removing the dot from the comment would also work --- blender_cloud/blender.py | 1 + 1 file changed, 1 insertion(+) diff --git a/blender_cloud/blender.py b/blender_cloud/blender.py index 9be920f..3b3955d 100644 --- a/blender_cloud/blender.py +++ b/blender_cloud/blender.py @@ -361,6 +361,7 @@ class PILLAR_OT_subscribe(Operator): """Opens a browser to subscribe the user to the Cloud.""" bl_idname = 'pillar.subscribe' bl_label = 'Subscribe to the Cloud' + bl_description = "Opens a page in a web browser to subscribe to the Blender Cloud" def execute(self, context): import webbrowser