Skip to content

Commit 4a37faa

Browse files
committed
Comment out debug print in PP, update changelog
1 parent 9811def commit 4a37faa

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

docs/v4/changelist.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ This document contains details about what has changed in Retopoflow in version 4
99
- Fixed occasional incorrect normals when tweaking without transforms applied
1010
- Fixed theme not always being reset when exiting Retopoflow
1111
- Fixed error in add-on preferences Tweaking panel
12+
- Fixed issue with Contours Walk method when adjusting source object modifier between strokes
1213
- Fixed status bar hotkey hints not drawing in Blender 4.2
1314
- Fixed issue with drawing with Apple Pencil when mouse isn't in 3D View
1415

retopoflow/rftool_polypen/polypen_logic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ def update(self, context:Context, event:Event, insert_mode:str|None, parallel_st
437437
if not self.bm or not self.bm.is_valid:
438438
self.bm, self.em = get_bmesh_emesh(context)
439439
self.layer_sel_vert, self.layer_sel_edge, self.layer_sel_face = bmops.get_select_layers(self.bm)
440-
print(type(self.layer_sel_vert), type(self.layer_sel_edge), type(self.layer_sel_face))
440+
# print(type(self.layer_sel_vert), type(self.layer_sel_edge), type(self.layer_sel_face))
441441
self.selected = None
442442
self.nearest = None
443443
self.nearest_bme = None

0 commit comments

Comments
 (0)