Sculpt: Add polyline hide operator #119483

Merged
Hans Goudey merged 17 commits from Sean-Kim/blender:polyline-hide into main 2024-04-29 14:04:28 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit b4e45df791 - Show all commits

View File

@ -3139,7 +3139,7 @@ class VIEW3D_PT_tools_active(ToolSelectPanelHelper, Panel):
(
_defs_sculpt.hide_border,
_defs_sculpt.hide_lasso,
_defs_sculpt.hide_line,,
_defs_sculpt.hide_line,
_defs_sculpt.hide_polyline,
),
(

View File

@ -989,7 +989,7 @@ void PAINT_OT_hide_show_polyline_gesture(wmOperatorType *ot)
WM_operator_properties_gesture_polyline(ot);
hide_show_operator_properties(ot);
hide_show_operator_gesture_properties(ot);
gesture::operator_properties(ot);
gesture::operator_properties(ot, gesture::ShapeType::Lasso);
}
/** \} */