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 an issue where connections would not gain focus when selected #190

Merged
merged 1 commit into from
Jan 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
> - Breaking Changes:
> - Features:
> - Bugfixes:
> - Fixed an issue where connections would not gain focus when selected, which could prevent editor keybindings from functioning in certain scenarios

#### **Version 7.0.0**

Expand Down
5 changes: 5 additions & 0 deletions Nodify/Connections/ConnectionContainer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,11 @@ public event RoutedEventHandler Unselected

private SelectionType? _selectionType;

static ConnectionContainer()
{
FocusableProperty.OverrideMetadata(typeof(ConnectionContainer), new FrameworkPropertyMetadata(BoxValue.True));
}

internal ConnectionContainer(ConnectionsMultiSelector selector)
{
Selector = selector;
Expand Down
Loading