Fix T58105: Subdivision Set operator stuck in relative mode

Maniphest Tasks: T58105

Differential Revision: https://developer.blender.org/D4007
This commit is contained in:
Philipp Oeser 2018-11-29 10:10:31 +01:00
parent 3aed46a6cf
commit 213414674b
Notes: blender-bot 2023-02-14 06:17:14 +01:00
Referenced by issue #58105, Subdivision Set operator stuck in relative mode
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ def _template_items_object_subdivision_set():
return [
("object.subdivision_set",
{"type": NUMBERS_0[i], "value": 'PRESS', "ctrl": True},
{"properties": [("level", i)]})
{"properties": [("level", i), ("relative", False)]})
for i in range(6)
]