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>2018-11-28 09:50:44 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-11-28 09:50:44 +0300
commit7ecdcfe1735f78e049e5cec4a0df77a0a1be4a7b (patch)
tree360fa0a86669257070f50bf394632affe2834d7b /release/scripts/startup/bl_ui/space_node.py
parentc527c78174176d33d52894f0c2c386cac40b19e2 (diff)
Cleanup: quiet keymap float compare warning
Diffstat (limited to 'release/scripts/startup/bl_ui/space_node.py')
-rw-r--r--release/scripts/startup/bl_ui/space_node.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_node.py b/release/scripts/startup/bl_ui/space_node.py
index 9392e6baa54..d799251fe30 100644
--- a/release/scripts/startup/bl_ui/space_node.py
+++ b/release/scripts/startup/bl_ui/space_node.py
@@ -220,7 +220,7 @@ class NODE_MT_view(Menu):
layout.operator("node.backimage_move", text="Backdrop Move")
layout.operator("node.backimage_zoom", text="Backdrop Zoom In").factor = 1.2
- layout.operator("node.backimage_zoom", text="Backdrop Zoom Out").factor = 0.83333
+ layout.operator("node.backimage_zoom", text="Backdrop Zoom Out").factor = 1.0 / 1.2
layout.operator("node.backimage_fit", text="Fit Backdrop to Available Space")
layout.separator()