Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPullusb <bernou.samuel@gmail.com>2020-10-06 21:47:38 +0300
committerPullusb <bernou.samuel@gmail.com>2020-10-06 21:47:38 +0300
commitf1c61ad0426d1207c89836a691af7c6523bd3bf3 (patch)
treeb49818e5c500e2882833de37818aa13194f513b9 /greasepencil_tools
parent6b69de830877285bdedbd02a4ac5037362ece79a (diff)
Spellcheck: Capitalize words in displayed text
Title cased words for sidebar's Tab category and addon preferences properties. Changed description field.
Diffstat (limited to 'greasepencil_tools')
-rw-r--r--greasepencil_tools/__init__.py6
-rw-r--r--greasepencil_tools/prefs.py10
-rw-r--r--greasepencil_tools/ui_panels.py4
3 files changed, 10 insertions, 10 deletions
diff --git a/greasepencil_tools/__init__.py b/greasepencil_tools/__init__.py
index d42b24c5..c99b30de 100644
--- a/greasepencil_tools/__init__.py
+++ b/greasepencil_tools/__init__.py
@@ -19,11 +19,11 @@
bl_info = {
"name": "Grease Pencil Tools",
-"description": "Pack of tools for Grease pencil drawing",
+"description": "Extra tools for Grease Pencil",
"author": "Samuel Bernou, Antonio Vazquez, Daniel Martinez Lara, Matias Mendiola",
-"version": (1, 1, 2),
+"version": (1, 1, 3),
"blender": (2, 91, 0),
-"location": "Sidebar > Grease pencil > Grease pencil",
+"location": "Sidebar > Grease Pencil > Grease Pencil Tools",
"warning": "",
"doc_url": "https://docs.blender.org/manual/en/dev/addons/object/grease_pencil_tools.html",
"tracker_url": "https://github.com/Pullusb/greasepencil-addon/issues",
diff --git a/greasepencil_tools/prefs.py b/greasepencil_tools/prefs.py
index 81434136..4c146220 100644
--- a/greasepencil_tools/prefs.py
+++ b/greasepencil_tools/prefs.py
@@ -54,7 +54,7 @@ class GreasePencilAddonPrefs(bpy.types.AddonPreferences):
category : StringProperty(
name="Category",
description="Choose a name for the category of the panel",
- default="Grease pencil",
+ default="Grease Pencil",
update=update_panel)
pref_tabs : EnumProperty(
@@ -74,7 +74,7 @@ class GreasePencilAddonPrefs(bpy.types.AddonPreferences):
items=(('KEY_LINEAR', "Linear (perspective mode)", "Linear interpolation, like corner deform / perspective tools of classic 2D", 'IPO_LINEAR',0),
('KEY_BSPLINE', "Spline (smooth deform)", "Spline interpolation transformation\nBest when lattice is subdivided", 'IPO_CIRC',1),
),
- name='Starting interpolation', default='KEY_LINEAR', description='Choose default interpolation when entering mode')
+ name='Starting Interpolation', default='KEY_LINEAR', description='Choose default interpolation when entering mode')
# About interpolation : https://docs.blender.org/manual/en/2.83/animation/shape_keys/shape_keys_panel.html#fig-interpolation-type
@@ -142,7 +142,7 @@ class GreasePencilAddonPrefs(bpy.types.AddonPreferences):
## BOX DEFORM
box = layout.box()
- box.label(text='Box deform:')
+ box.label(text='Box Deform:')
box.prop(self, "use_clic_drag")
# box.separator()
box.prop(self, "default_deform_type")
@@ -155,7 +155,7 @@ class GreasePencilAddonPrefs(bpy.types.AddonPreferences):
box = layout.box()
box.label(text='Rotate canvas:')
- box.prop(self, "canvas_use_shortcut", text='Bind shortcuts')
+ box.prop(self, "canvas_use_shortcut", text='Bind Shortcuts')
if self.canvas_use_shortcut:
@@ -181,7 +181,7 @@ class GreasePencilAddonPrefs(bpy.types.AddonPreferences):
#**Behavior from context mode**
col = layout.column()
- col.label(text='Box deform tool')
+ col.label(text='Box Deform Tool')
col.label(text="Usage:", icon='MOD_LATTICE')
col.label(text="Use the shortcut 'Ctrl+T' in available modes (listed below)")
col.label(text="The lattice box is generated facing your view (be sure to face canvas if you want to stay on it)")
diff --git a/greasepencil_tools/ui_panels.py b/greasepencil_tools/ui_panels.py
index ecbc9a24..715c4db5 100644
--- a/greasepencil_tools/ui_panels.py
+++ b/greasepencil_tools/ui_panels.py
@@ -19,10 +19,10 @@
import bpy
class GP_PT_sidebarPanel(bpy.types.Panel):
- bl_label = "Grease Pencil tools"
+ bl_label = "Grease Pencil Tools"
bl_space_type = "VIEW_3D"
bl_region_type = "UI"
- bl_category = "Grease pencil"
+ bl_category = "Grease Pencil"
def draw(self, context):
layout = self.layout