Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
blender-addons
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
blender
blender-addons
Commits
7c2a2bd0
Commit
7c2a2bd0
authored
5 years ago
by
Campbell Barton
Browse files
Options
Downloads
Patches
Plain Diff
Cleanup: move 'check_existing' to the bottom of properties
parent
4d30d104
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
io_mesh_uv_layout/__init__.py
+5
-5
5 additions, 5 deletions
io_mesh_uv_layout/__init__.py
with
5 additions
and
5 deletions
io_mesh_uv_layout/__init__.py
+
5
−
5
View file @
7c2a2bd0
...
...
@@ -70,11 +70,6 @@ class ExportUVLayout(bpy.types.Operator):
description
=
"
Export all UVs in this mesh (not just visible ones)
"
,
default
=
False
,
)
check_existing
:
BoolProperty
(
name
=
"
Check Existing
"
,
default
=
True
,
options
=
{
'
HIDDEN
'
},
)
modified
:
BoolProperty
(
name
=
"
Modified
"
,
description
=
"
Exports UVs from the modified mesh
"
,
...
...
@@ -105,6 +100,11 @@ class ExportUVLayout(bpy.types.Operator):
default
=
0.25
,
description
=
"
Set amount of opacity for exported UV layout
"
,
)
# For the file-selector.
check_existing
:
BoolProperty
(
default
=
True
,
options
=
{
'
HIDDEN
'
},
)
@classmethod
def
poll
(
cls
,
context
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment