From 56353d41772de7f6bbe8e370fa61e1ac47ac5b7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Mon, 7 Nov 2016 13:39:33 +0100 Subject: [PATCH] More captialisation of button labels. --- blender_cloud/attract/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blender_cloud/attract/__init__.py b/blender_cloud/attract/__init__.py index a056ee1..21537ed 100644 --- a/blender_cloud/attract/__init__.py +++ b/blender_cloud/attract/__init__.py @@ -209,9 +209,9 @@ class ToolsPanel(Panel): elif context.selected_sequences: if len(context.selected_sequences) > 1: - noun = 'selected strips' + noun = 'Selected Strips' else: - noun = 'this strip' + noun = 'This Strip' layout.operator(AttractShotSubmitSelected.bl_idname, text='Submit %s as New Shot' % noun) layout.operator('attract.shot_relink')