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:
authorNBurn <7nburn@gmail.com>2019-05-21 03:31:07 +0300
committerNBurn <7nburn@gmail.com>2019-05-21 03:31:07 +0300
commit8a6d66a1db9fa5dfd3a340e82f3ddcc805170334 (patch)
treeae058e058c359538f80b58457bc0e714024bcc8a /space_view3d_stored_views
parent3778680f22bef286234434e22ca03481c7ef0495 (diff)
annotation property updates
Diffstat (limited to 'space_view3d_stored_views')
-rw-r--r--space_view3d_stored_views/properties.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/space_view3d_stored_views/properties.py b/space_view3d_stored_views/properties.py
index 2c4adee3..78498f63 100644
--- a/space_view3d_stored_views/properties.py
+++ b/space_view3d_stored_views/properties.py
@@ -78,13 +78,13 @@ class DisplayData(PropertyGroup):
class ViewData(PropertyGroup):
- pov = PointerProperty(
+ pov: PointerProperty(
type=POVData
)
- layers = PointerProperty(
+ layers: PointerProperty(
type=LayersData
)
- display = PointerProperty(
+ display: PointerProperty(
type=DisplayData
)
name: StringProperty()
@@ -111,7 +111,7 @@ class StoredViewsData(PropertyGroup):
('DISPLAY', "Display", "Display settings")],
default='VIEW'
)
- current_indices = IntVectorProperty(
+ current_indices: IntVectorProperty(
size=4,
default=[-1, -1, -1, -1]
)