| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent d4d59f1 commit 56f5cc2
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -18,6 +18,7 @@ however, it has to be formatted properly to pass verification tests. | |||
| 18 | 18 | - Allow using InputSystem package if the XR, VR or Physics modules are disabled for smaller builds. | |
| 19 | 19 | - Fixed documentation landing page and table of contents. | |
| 20 | 20 | - 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. | ||
| 21 | 22 | - Fixed an error when adding new bindings in the Input Actions editor window when a filter was applied. | |
| 22 | 23 | - Fixed scroll wheel handling in `InputSystemUIInputModule` not being smooth. | |
| 23 | 24 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -156,7 +156,7 @@ private void AddDeviceTreeItemRecursive(InputControlLayout layout, AdvancedDropd | |||
| 156 | 156 | return; | |
| 157 | 157 | ||
| 158 | 158 | // Add toplevel item for device. | |
| 159 | - var deviceItem = new DeviceDropdownItem(layout); | ||
| 159 | + var deviceItem = new DeviceDropdownItem(layout, searchable: searchable); | ||
| 160 | 160 | parent.AddChild(deviceItem); | |
| 161 | 161 | ||
| 162 | 162 | // Add common usage variants. | |
| Back | FazBrowse Home | New Git URL |
0 commit comments