'Add Snap Point' does not work with Ctrl pressed #64267

Closed
opened 2019-05-07 20:15:43 +02:00 by Konstantin · 13 comments

System Information
Operating system: Windows-10-10.0.17763 64 Bits
Graphics card: Intel(R) HD Graphics 620 Intel 4.5.0 - Build 23.20.16.4973

Blender Version
Broken: version: 2.80 (sub 60), branch: blender2.7, commit date: 2019-05-07 00:16, hash: bfef3bce1a
Worked: NONE

Short description of error
When you toggle snapping during transform you can use A button to add midpoints snaps.
But A button wont work if activate snapping holding Ctrl.
09e86639f186d7e1aa54c19777908936- [x].mp4
Exact steps for others to reproduce the error

  1. edit mode
  2. switch snap target to vertex/edge/face
  3. toggle snapping ON
  4. select and move one vert
  5. push A to add mid points
    6. Sucsess! it working
  6. toggle snapping OFF
  7. select and move one vert
  8. hold CTRL to enable snapping
  9. push A to add mid points -> wont work
**System Information** Operating system: Windows-10-10.0.17763 64 Bits Graphics card: Intel(R) HD Graphics 620 Intel 4.5.0 - Build 23.20.16.4973 **Blender Version** Broken: version: 2.80 (sub 60), branch: blender2.7, commit date: 2019-05-07 00:16, hash: `bfef3bce1a` Worked: NONE **Short description of error** When you toggle snapping during transform you can use A button to add midpoints snaps. But A button wont work if activate snapping holding Ctrl. [09e86639f186d7e1aa54c19777908936- [x].mp4](https://archive.blender.org/developer/F7013185/09e86639f186d7e1aa54c19777908936_1_.mp4) **Exact steps for others to reproduce the error** 1. edit mode 2. switch snap target to vertex/edge/face 3. toggle snapping ON 4. select and move one vert 5. push A to add mid points *6. Sucsess! it working* 7. toggle snapping OFF 8. select and move one vert 9. hold CTRL to enable snapping 10. push A to add mid points -> wont work
Author

Added subscriber: @youthatninja

Added subscriber: @youthatninja

#80858 was marked as duplicate of this issue

#80858 was marked as duplicate of this issue

#80300 was marked as duplicate of this issue

#80300 was marked as duplicate of this issue
Campbell Barton was assigned by Sebastian Parborg 2019-05-08 11:58:05 +02:00
Author

actually if you were fixed that.
no need in new snap to edge center option.
how to snap to face center then?

actually if you were fixed that. no need in new snap to edge center option. how to snap to face center then?
Campbell Barton was unassigned by Dalai Felinto 2019-12-23 16:34:30 +01:00

Added subscriber: @ideasman42

Added subscriber: @ideasman42

Added subscriber: @iss

Added subscriber: @iss

This doesn't seem to work as intended now at all.

This doesn't seem to work as intended now at all.

Added subscribers: @WilliamReynish, @mano-wii

Added subscribers: @WilliamReynish, @mano-wii

This is not exactly a bug, but in fact it would be a nice addition.

diff --git a/release/scripts/presets/keyconfig/keymap_data/blender_default.py b/release/scripts/presets/keyconfig/keymap_data/blender_default.py
index 8b398d1541c..60ab2939b76 100644
--- a/release/scripts/presets/keyconfig/keymap_data/blender_default.py
+++ b/release/scripts/presets/keyconfig/keymap_data/blender_default.py
@@ -4465,6 +4465,7 @@ def km_transform_modal_map(_params):
         ("SNAP_INV_ON", {"type": 'RIGHT_CTRL', "value": 'PRESS', "any": True}, None),
         ("SNAP_INV_OFF", {"type": 'RIGHT_CTRL', "value": 'RELEASE', "any": True}, None),
         ("ADD_SNAP", {"type": 'A', "value": 'PRESS'}, None),
+        ("ADD_SNAP", {"type": 'A', "value": 'PRESS', "ctrl": True}, None),
         ("REMOVE_SNAP", {"type": 'A', "value": 'PRESS', "alt": True}, None),
         ("PROPORTIONAL_SIZE_UP", {"type": 'PAGE_UP', "value": 'PRESS'}, None),
         ("PROPORTIONAL_SIZE_DOWN", {"type": 'PAGE_DOWN', "value": 'PRESS'}, None),
diff --git a/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py b/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py
index 2af3bc4898c..c8fe17f8362 100644
--- a/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py
+++ b/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py
@@ -3537,6 +3537,7 @@ def km_transform_modal_map(_params):
         ("SNAP_INV_ON", {"type": 'RIGHT_CTRL', "value": 'PRESS', "any": True}, None),
         ("SNAP_INV_OFF", {"type": 'RIGHT_CTRL', "value": 'RELEASE', "any": True}, None),
         ("ADD_SNAP", {"type": 'A', "value": 'PRESS'}, None),
+        ("ADD_SNAP", {"type": 'A', "value": 'PRESS', "ctrl": True}, None),
         ("REMOVE_SNAP", {"type": 'A', "value": 'PRESS', "alt": True}, None),
         ("PROPORTIONAL_SIZE_UP", {"type": 'PAGE_UP', "value": 'PRESS'}, None),
         ("PROPORTIONAL_SIZE_DOWN", {"type": 'PAGE_DOWN', "value": 'PRESS'}, None),

@WilliamReynish, any objection to adding this keyitem for the modal keymap used in the transform operator?

This is not exactly a bug, but in fact it would be a nice addition. ``` diff --git a/release/scripts/presets/keyconfig/keymap_data/blender_default.py b/release/scripts/presets/keyconfig/keymap_data/blender_default.py index 8b398d1541c..60ab2939b76 100644 --- a/release/scripts/presets/keyconfig/keymap_data/blender_default.py +++ b/release/scripts/presets/keyconfig/keymap_data/blender_default.py @@ -4465,6 +4465,7 @@ def km_transform_modal_map(_params): ("SNAP_INV_ON", {"type": 'RIGHT_CTRL', "value": 'PRESS', "any": True}, None), ("SNAP_INV_OFF", {"type": 'RIGHT_CTRL', "value": 'RELEASE', "any": True}, None), ("ADD_SNAP", {"type": 'A', "value": 'PRESS'}, None), + ("ADD_SNAP", {"type": 'A', "value": 'PRESS', "ctrl": True}, None), ("REMOVE_SNAP", {"type": 'A', "value": 'PRESS', "alt": True}, None), ("PROPORTIONAL_SIZE_UP", {"type": 'PAGE_UP', "value": 'PRESS'}, None), ("PROPORTIONAL_SIZE_DOWN", {"type": 'PAGE_DOWN', "value": 'PRESS'}, None), diff --git a/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py b/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py index 2af3bc4898c..c8fe17f8362 100644 --- a/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py +++ b/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py @@ -3537,6 +3537,7 @@ def km_transform_modal_map(_params): ("SNAP_INV_ON", {"type": 'RIGHT_CTRL', "value": 'PRESS', "any": True}, None), ("SNAP_INV_OFF", {"type": 'RIGHT_CTRL', "value": 'RELEASE', "any": True}, None), ("ADD_SNAP", {"type": 'A', "value": 'PRESS'}, None), + ("ADD_SNAP", {"type": 'A', "value": 'PRESS', "ctrl": True}, None), ("REMOVE_SNAP", {"type": 'A', "value": 'PRESS', "alt": True}, None), ("PROPORTIONAL_SIZE_UP", {"type": 'PAGE_UP', "value": 'PRESS'}, None), ("PROPORTIONAL_SIZE_DOWN", {"type": 'PAGE_DOWN', "value": 'PRESS'}, None), ``` @WilliamReynish, any objection to adding this keyitem for the modal keymap used in the transform operator?
Germano Cavalcante changed title from Mid point snaps to 'Add Snap Point' does not work with Ctrl pressed 2020-09-01 13:47:44 +02:00

Added subscribers: @razed, @lichtwerk

Added subscribers: @razed, @lichtwerk

This issue was referenced by 9259052e15

This issue was referenced by 9259052e15e799433a48bffc00711049010b47e3

Changed status from 'Confirmed' to: 'Resolved'

Changed status from 'Confirmed' to: 'Resolved'
Germano Cavalcante self-assigned this 2020-09-01 14:54:05 +02:00

Added subscribers: @borschberry, @jenkm

Added subscribers: @borschberry, @jenkm
Sign in to join this conversation.
No Label
Interest
Alembic
Interest
Animation & Rigging
Interest
Asset Browser
Interest
Asset Browser Project Overview
Interest
Audio
Interest
Automated Testing
Interest
Blender Asset Bundle
Interest
BlendFile
Interest
Collada
Interest
Compatibility
Interest
Compositing
Interest
Core
Interest
Cycles
Interest
Dependency Graph
Interest
Development Management
Interest
EEVEE
Interest
EEVEE & Viewport
Interest
Freestyle
Interest
Geometry Nodes
Interest
Grease Pencil
Interest
ID Management
Interest
Images & Movies
Interest
Import Export
Interest
Line Art
Interest
Masking
Interest
Metal
Interest
Modeling
Interest
Modifiers
Interest
Motion Tracking
Interest
Nodes & Physics
Interest
OpenGL
Interest
Overlay
Interest
Overrides
Interest
Performance
Interest
Physics
Interest
Pipeline, Assets & IO
Interest
Platforms, Builds & Tests
Interest
Python API
Interest
Render & Cycles
Interest
Render Pipeline
Interest
Sculpt, Paint & Texture
Interest
Text Editor
Interest
Translations
Interest
Triaging
Interest
Undo
Interest
USD
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Interest
Video Sequencer
Interest
Virtual Reality
Interest
Vulkan
Interest
Wayland
Interest
Workbench
Interest: X11
Legacy
Blender 2.8 Project
Legacy
Milestone 1: Basic, Local Asset Browser
Legacy
OpenGL Error
Meta
Good First Issue
Meta
Papercut
Meta
Retrospective
Meta
Security
Module
Animation & Rigging
Module
Core
Module
Development Management
Module
EEVEE & Viewport
Module
Grease Pencil
Module
Modeling
Module
Nodes & Physics
Module
Pipeline, Assets & IO
Module
Platforms, Builds & Tests
Module
Python API
Module
Render & Cycles
Module
Sculpt, Paint & Texture
Module
Triaging
Module
User Interface
Module
VFX & Video
Platform
FreeBSD
Platform
Linux
Platform
macOS
Platform
Windows
Priority
High
Priority
Low
Priority
Normal
Priority
Unbreak Now!
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No project
5 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: blender/blender#64267
No description provided.