Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,11 @@ class _IntervalDropdownState extends State<IntervalDropdown> {
);
widget.chartController.data.displayInterval = value;
final duration = value.duration;

widget.chartController.event.zoomDuration = duration;
widget.chartController.vm.zoomDuration = duration;
widget.chartController.android.zoomDuration = duration;
if (widget.chartController.isAndroidChartVisible.value) {
widget.chartController.android.zoomDuration = duration;
}
});
},
items: displayTypes,
Expand Down
3 changes: 2 additions & 1 deletion packages/devtools_app/release_notes/NEXT_RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ TODO: Remove this section if there are not any general updates.

## Memory updates

TODO: Remove this section if there are not any general updates.
- Fixed error preventing users from changing the zoom duration. -
[#9573](https://github.com/flutter/devtools/pull/9573)

## Debugger updates

Expand Down