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

Fix quick-deleting unselected slider path control point also deleting all selected control points #31348

Merged
merged 2 commits into from
Dec 30, 2024

Conversation

bdach
Copy link
Collaborator

@bdach bdach commented Dec 30, 2024

Closes #31308.

Logic matches corresponding quick-delete logic in

private void handleQuickDeletion(SelectionBlueprint<T> blueprint)
{
if (blueprint.HandleQuickDeletion())
return;
if (!blueprint.IsSelected)
DeleteItems(new[] { blueprint.Item });
else
DeleteSelected();
}
.

@smoogipoo smoogipoo merged commit c56a6ed into ppy:master Dec 30, 2024
10 checks passed
@bdach bdach deleted the fix-slider-quick-delete branch December 30, 2024 13:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Incorrect slider nodes deleted
2 participants