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
ad6d6816
Commit
ad6d6816
authored
2 years ago
by
Bastien Montagne
Browse files
Options
Downloads
Patches
Plain Diff
UI: Cleanup/Fixes of some UI messages.
parent
6feb9c53
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
object_print3d_utils/operators.py
+3
-3
3 additions, 3 deletions
object_print3d_utils/operators.py
with
3 additions
and
3 deletions
object_print3d_utils/operators.py
+
3
−
3
View file @
ad6d6816
...
@@ -164,11 +164,11 @@ class MESH_OT_print3d_check_solid(Operator):
...
@@ -164,11 +164,11 @@ class MESH_OT_print3d_check_solid(Operator):
)
)
info
.
append
(
info
.
append
(
(
tip_
(
"
Non Manifold Edge: {}
"
).
format
(
(
tip_
(
"
Non Manifold Edge
s
: {}
"
).
format
(
len
(
edges_non_manifold
)),
len
(
edges_non_manifold
)),
(
bmesh
.
types
.
BMEdge
,
(
bmesh
.
types
.
BMEdge
,
edges_non_manifold
)))
edges_non_manifold
)))
info
.
append
((
tip_
(
"
Bad Contig
.
Edges: {}
"
).
format
(
len
(
edges_non_contig
)),
(
bmesh
.
types
.
BMEdge
,
edges_non_contig
)))
info
.
append
((
tip_
(
"
Bad Contig
uous
Edges: {}
"
).
format
(
len
(
edges_non_contig
)),
(
bmesh
.
types
.
BMEdge
,
edges_non_contig
)))
bm
.
free
()
bm
.
free
()
...
@@ -786,7 +786,7 @@ class MESH_OT_print3d_align_to_xy(Operator):
...
@@ -786,7 +786,7 @@ class MESH_OT_print3d_align_to_xy(Operator):
if
len
(
skip_invalid
)
>
0
:
if
len
(
skip_invalid
)
>
0
:
for
name
in
skip_invalid
:
for
name
in
skip_invalid
:
print
(
tip_
(
"
Align to XY: Skipping object {}. No faces selected
.
"
).
format
(
name
))
print
(
tip_
(
"
Align to XY: Skipping object {}. No faces selected
"
).
format
(
name
))
if
len
(
skip_invalid
)
==
1
:
if
len
(
skip_invalid
)
==
1
:
self
.
report
({
'
WARNING
'
},
tip_
(
"
Skipping object {}. No faces selected
"
).
format
(
skip_invalid
[
0
]))
self
.
report
({
'
WARNING
'
},
tip_
(
"
Skipping object {}. No faces selected
"
).
format
(
skip_invalid
[
0
]))
else
:
else
:
...
...
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