Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Alt + RMB lets you list select in any tool mode in 3D #87924

Closed
ryevdokimov opened this issue Feb 4, 2024 · 4 comments · Fixed by #87989
Closed

Alt + RMB lets you list select in any tool mode in 3D #87924

ryevdokimov opened this issue Feb 4, 2024 · 4 comments · Fixed by #87989

Comments

@ryevdokimov
Copy link
Contributor

ryevdokimov commented Feb 4, 2024

Tested versions

v4.2.1.stable.mono.official [b09f793]
v4.3.dev.custom_build [677bd97]

System information

Windows 10.0.22631 - Vulkan (Forward+) - integrated AMD Radeon(TM) Graphics (Advanced Micro Devices, Inc.; 31.0.23013.1023) - AMD Ryzen 7 PRO 6850U with Radeon Graphics (16 Threads)

Issue description

This is either a bug or needs a description for all the tools.

image

image

image

Steps to reproduce

Select any tool that isn't the 'Select Tool' and ALT + RMB on a position with multiple nodes.

Minimal reproduction project (MRP)

N/A

@AThousandShips
Copy link
Member

This seems to be by design, and very old, it allows any modes except transform:

if (_edit.mode == TRANSFORM_NONE && b->is_pressed()) {
if (b->is_alt_pressed()) {
if (nav_scheme == NAVIGATION_MAYA) {
break;
}
_list_select(b);
return;
}
}

@ryevdokimov
Copy link
Contributor Author

ryevdokimov commented Feb 5, 2024

I couldn't find it documented anywhere (besides the code being what it is). It also doesn't match 2D behavior or what the tooltips say.

@AThousandShips
Copy link
Member

Sure but people are likely using it despite the lack of a tooltip, and despite the inconsistency, I think the tooltips should be fixed to match the behaviour, not the other way around, to not disrupt workflows

@ryevdokimov
Copy link
Contributor Author

Hmm, after playing around with it just now I actually agree. Personally, I think you should always be always to select other things such as in the draft I made that I linked above, but that's a different topic.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment