Auto-Submit | +1 |
This is very similar to a bug you fixed in the Elements panel, PTAL :-)
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Commit-Queue | +2 |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Test: Manually verified the fix.
Super nit: The fix/change and other footer should be last thing in the commit (some times it even fails PRESUBMIT)
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
vertically = this.splitWidget.element.offsetWidth < 680;
can we keep the UI.InspectorView.InspectorView.instance() before this line to keep the side-effect and land this for now?
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Auto-Submit | +1 |
Super nit: The fix/change and other footer should be last thing in the commit (some times it even fails PRESUBMIT)
Done
vertically = this.splitWidget.element.offsetWidth < 680;
can we keep the UI.InspectorView.InspectorView.instance() before this line to keep the side-effect and land this for now?
If that will solve the issue, sure!
will try it in a moment.
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
vertically = this.splitWidget.element.offsetWidth < 680;
Piotr Paulskican we keep the UI.InspectorView.InspectorView.instance() before this line to keep the side-effect and land this for now?
If that will solve the issue, sure!
will try it in a moment.
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
vertically = this.splitWidget.element.offsetWidth < 680;
Piotr Paulskican we keep the UI.InspectorView.InspectorView.instance() before this line to keep the side-effect and land this for now?
Piotr PaulskiIf that will solve the issue, sure!
will try it in a moment.
I tested locally, it didn't solve the issue.
Done
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
1 is the latest approved patch-set.
No files were changed between the latest approved patch-set and the submitted one.
Fix SourcesPanel responsive layout with vertical drawer.
The SourcesPanel's responsive layout failed to trigger correctly when
Vertical Drawer Orientation feature was enabled and the drawer was in
vertical orientation.
The layout logic was incorrectly based on the total width of the
Inspector window, rather than the available width for the SourcesPanel
itself. When the drawer was open in vertical orientation, it reduced the
panel's available space, but the layout did not adapt because the
overall window width remained unchanged.
This change updates the layout logic to be responsive to the
SourcesPanel's own container width. This ensures that its side-pane
components correctly move below the main editor pane when space is
limited by the vertical drawer, matching the behavior of a narrowed
window.
Test: Manually verified the fix.
1. Open the Sources panel and
show the drawer vertically.
2. Narrow the main window or widen the vertical drawer.
3. Verify the Sources panel switches to its responsive, narrow-layout
mode as expected.
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |