Skip to content

Commit 5b9d58c

Browse files
committed
FIX: Input Actions editor toolbar no longer clips when the properties panel scrolls
Pin the top toolbar row (flex-shrink: 0) so the flex column steals overflow height from the body instead of compressing the toolbar and clipping its buttons once the Action Properties panel is tall enough to show a scrollbar.
1 parent a0cd937 commit 5b9d58c

2 files changed

Lines changed: 5 additions & 0 deletions

File tree

Packages/com.unity.inputsystem/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1010
### Fixed
1111

1212
- Fixed parameter-less processors and interactions (e.g. "Invert") in the Input Actions editor's Action Properties view showing an expandable foldout whose arrow animated on click but revealed no content; such items are now rendered as a plain, non-collapsible header [UUM-144325](https://issuetracker.unity3d.com/product/unity/issues/guid/UUM-144325)
13+
- Fixed the Input Actions editor toolbar buttons being clipped when the Action Properties panel grew tall enough to show a scrollbar
1314
- Fixed the Input Debugger window (Window > Analysis > Input Debugger) being resizable arbitrarily small until its toolbar and device/action/layout tree view were no longer usably visible; it now enforces a minimum window size [UUM-137119](https://issuetracker.unity3d.com/product/unity/issues/guid/UUM-137119)
1415
- Fixed the Action Maps list in the Input Actions editor losing keyboard focus after deleting a map, so that Delete, Duplicate, and arrow-key navigation kept working on the auto-selected replacement map without requiring an extra click [UUM-147152](https://issuetracker.unity3d.com/product/unity/issues/guid/UUM-147152)
1516

Packages/com.unity.inputsystem/InputSystem/Editor/UITKAssetEditor/PackageResources/InputActionsEditorStyles.uss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,3 +233,7 @@
233233
#action-editor {
234234
min-width: 520px;
235235
}
236+
237+
#control-schemes-toolbar-container {
238+
flex-shrink: 0;
239+
}

0 commit comments

Comments
 (0)