Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-01-26 00:16:22 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-01-26 00:16:22 +0300
commita35c0fe6ce9231d5fc0e34d2d4f79f189124bad8 (patch)
treefd8ee8ffae7d341bd950984dfd98bee8f046897d /release/scripts/startup/bl_operators/wm.py
parent4fc54ddae18c64c27f440c7bf333f57e26f61171 (diff)
parent14f61c619b0bd28386673672881a234e7e1ded11 (diff)
Merge branch 'blender-v2.92-release'
Diffstat (limited to 'release/scripts/startup/bl_operators/wm.py')
-rw-r--r--release/scripts/startup/bl_operators/wm.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_operators/wm.py b/release/scripts/startup/bl_operators/wm.py
index ce2fe66dd41..2ee20e08589 100644
--- a/release/scripts/startup/bl_operators/wm.py
+++ b/release/scripts/startup/bl_operators/wm.py
@@ -43,18 +43,21 @@ rna_reverse_prop = BoolProperty(
name="Reverse",
description="Cycle backwards",
default=False,
+ options={'SKIP_SAVE'},
)
rna_wrap_prop = BoolProperty(
name="Wrap",
description="Wrap back to the first/last values",
default=False,
+ options={'SKIP_SAVE'},
)
rna_relative_prop = BoolProperty(
name="Relative",
description="Apply relative to the current value (delta)",
default=False,
+ options={'SKIP_SAVE'},
)
rna_space_type_prop = EnumProperty(
@@ -228,6 +231,7 @@ class WM_OT_context_scale_int(Operator):
name="Always Step",
description="Always adjust the value by a minimum of 1 when 'value' is not 1.0",
default=True,
+ options={'SKIP_SAVE'},
)
def execute(self, context):
@@ -736,10 +740,12 @@ class WM_OT_context_modal_mouse(Operator):
input_scale: FloatProperty(
description="Scale the mouse movement by this value before applying the delta",
default=0.01,
+ options={'SKIP_SAVE'},
)
invert: BoolProperty(
description="Invert the mouse input",
default=False,
+ options={'SKIP_SAVE'},
)
initial_x: IntProperty(options={'HIDDEN'})
@@ -1727,6 +1733,7 @@ class WM_OT_tool_set_by_index(Operator):
expand: BoolProperty(
description="Include tool subgroups",
default=True,
+ options={'SKIP_SAVE'},
)
as_fallback: BoolProperty(