Skip to content
Open
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 Packages/com.unity.inputsystem/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ however, it has to be formatted properly to pass verification tests.
- Deferred auto-registration of processors, interactions and composite binding types referenced by `InputActionAsset`
to only happen once when an unresolved type reference is found in an action definition. This avoids reflective
type loading from assemblies for all cases where the Input System is not extended. (ISXB-1766).
- Fixed extra empty lines being displayed in the control binding list when mouse buttons are pressed [ISXB-1677](https://issuetracker.unity3d.com/product/unity/issues/guid/ISXB-1677)

## [1.16.0] - 2025-11-10

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
{
if (!item.children.Any())
{
if (!item.IsSeparator())
if (!item.IsSeparator() && item.searchableName.Length > 0)

Check warning on line 121 in Packages/com.unity.inputsystem/InputSystem/Editor/Internal/AdvancedDropdown/AdvancedDropdownDataSource.cs

View check run for this annotation

Codecov GitHub.com / codecov/patch

Packages/com.unity.inputsystem/InputSystem/Editor/Internal/AdvancedDropdown/AdvancedDropdownDataSource.cs#L121

Added line #L121 was not covered by tests
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's it basically. We would like not to search in non-searchable items because they end up as empty lines in the displayed list in the end.

m_SearchableElements.Add(item);
return;
}
Expand Down