FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

FIX: Fixed duplicate devices showing in the "Supported Devices" popup… · 24BitGames/InputSystem@56f5cc2 · GitHub

Commit 56f5cc2

Browse files
jonas echterhoff
authored
FIX: Fixed duplicate devices showing in the "Supported Devices" popup when using a search filter. (Unity-Technologies#701)
1 parent d4d59f1 commit 56f5cc2

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

‎Packages/com.unity.inputsystem/CHANGELOG.md‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ however, it has to be formatted properly to pass verification tests.
1818
- Allow using InputSystem package if the XR, VR or Physics modules are disabled for smaller builds.
1919
- Fixed documentation landing page and table of contents.
2020
- Fixed tracked devices assigning pointer ids for UI pointer events correctly.
21+
- Fixed duplicate devices showing in the "Supported Devices" popup when using a search filter.
2122
- Fixed an error when adding new bindings in the Input Actions editor window when a filter was applied.
2223
- Fixed scroll wheel handling in `InputSystemUIInputModule` not being smooth.
2324

‎Packages/com.unity.inputsystem/InputSystem/Editor/ControlPicker/InputControlPickerDropdown.cs‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ private void AddDeviceTreeItemRecursive(InputControlLayout layout, AdvancedDropd
156156
return;
157157

158158
// Add toplevel item for device.
159-
var deviceItem = new DeviceDropdownItem(layout);
159+
var deviceItem = new DeviceDropdownItem(layout, searchable: searchable);
160160
parent.AddChild(deviceItem);
161161

162162
// Add common usage variants.

0 commit comments

Comments
 (0)

Back | FazBrowse Home | New Git URL