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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2018-05-26 12:54:25 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-05-26 12:54:25 +0300
commit0d559a67304d25a5c39937528cbc3c3dd51b6396 (patch)
tree442f35621e2100ecfb20f0d4dd6de71e26a9ff1f /release/scripts/startup/bl_ui/space_view3d_toolbar.py
parent6ebcf98943ee4a65b7d05be822fa99f7876d5036 (diff)
RNA: follow boolean naming conventions
Diffstat (limited to 'release/scripts/startup/bl_ui/space_view3d_toolbar.py')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index ae82f17bb87..c38ead16dc8 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -570,7 +570,7 @@ class VIEW3D_PT_slots_projectpaint(View3DPanel, Panel):
else:
slot = None
- if slot and slot.valid:
+ if slot and slot.is_valid:
col.label("UV Map:")
col.prop_search(slot, "uv_layer", ob.data, "uv_layers", text="")