| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 9307ca1 commit 40c0e45
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 NullReferenceException being thrown when project changes. | ||
| 21 | 22 | - Fixed duplicate devices showing in the "Supported Devices" popup when using a search filter. | |
| 22 | 23 | - Fixed an error when adding new bindings in the Input Actions editor window when a filter was applied. | |
| 23 | 24 | - Fixed scroll wheel handling in `InputSystemUIInputModule` not being smooth. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -336,7 +336,9 @@ internal static void ForceReload() | |||
| 336 | 336 | { | |
| 337 | 337 | // Force next OnGUI() to re-initialize. | |
| 338 | 338 | s_Instance.m_Settings = null; | |
| 339 | - s_Instance.Repaint(); | ||
| 339 | + | ||
| 340 | + // Request repaint. | ||
| 341 | + SettingsService.NotifySettingsProviderChanged(); | ||
| 340 | 342 | } | |
| 341 | 343 | } | |
| 342 | 344 | } | |
| Back | FazBrowse Home | New Git URL |
0 commit comments