Cleanup: Fix incorrectly formatted multi-line docstring
This has the effect that the message is cut off at the end of the first line. I copied the solution from other similar docstrings elsewhere in the code. As far as my regex-fu can tell, there are no other occurrences of this in the codebase. Issue reported by Joan Pujolar in #43295. Pull Request #105474
This commit is contained in:
committed by
Hans Goudey
parent
c3fdb02b91
commit
214b24e025
@@ -13,8 +13,8 @@ from bpy.props import (
|
||||
|
||||
|
||||
class SCENE_OT_freestyle_fill_range_by_selection(Operator):
|
||||
"""Fill the Range Min/Max entries by the min/max distance between selected mesh objects and the source object """
|
||||
"""(either a user-specified object or the active camera)"""
|
||||
"""Fill the Range Min/Max entries by the min/max distance between selected mesh objects and the source object """ \
|
||||
"""(either a user-specified object or the active camera)"""
|
||||
bl_idname = "scene.freestyle_fill_range_by_selection"
|
||||
bl_label = "Fill Range by Selection"
|
||||
bl_options = {'INTERNAL'}
|
||||
|
||||
Reference in New Issue
Block a user