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:
authorCampbell Barton <ideasman42@gmail.com>2021-11-12 09:00:04 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-11-12 09:00:04 +0300
commitc0ef14803b92e09a67b122b87b70b4366baf6259 (patch)
treee7e14056af3eb5f42e31391d1d878f032f8e215d /blenderkit
parentb3c179b2869d86c44a4b29e2c638ce2a596a820d (diff)
Cleanup: remove trailing '.'
These warn in debug builds.
Diffstat (limited to 'blenderkit')
-rw-r--r--blenderkit/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/blenderkit/__init__.py b/blenderkit/__init__.py
index 22afd2a1..173b6c85 100644
--- a/blenderkit/__init__.py
+++ b/blenderkit/__init__.py
@@ -991,7 +991,7 @@ class BlenderKitHDRUploadProps(PropertyGroup, BlenderKitCommonUploadProps):
default=0)
evs_cap: IntProperty(name="EV cap", description="EVs dynamic range",
default=0)
- true_hdr: BoolProperty(name="Real HDR", description="Image has High dynamic range.",default=False)
+ true_hdr: BoolProperty(name="Real HDR", description="Image has High dynamic range", default=False)
class BlenderKitBrushUploadProps(PropertyGroup, BlenderKitCommonUploadProps):
@@ -1532,7 +1532,7 @@ class BlenderKitHDRSearchProps(PropertyGroup, BlenderKitCommonSearchProps):
true_hdr: BoolProperty(
name='Real HDRs only',
- description='Search only for real HDRs, this means images that have a range higher than 0-1 in their pixels.',
+ description='Search only for real HDRs, this means images that have a range higher than 0-1 in their pixels',
default=True,
update=search.search_update
)