Fixed super call in onWindowResized in tabbar_widget.dart. (#12979)

This commit is contained in:
Jonathan Gilbert
2025-09-21 22:26:19 -05:00
committed by GitHub
parent 0cef5f79ee
commit 753a2ab2b7

View File

@@ -422,7 +422,7 @@ class _DesktopTabState extends State<DesktopTab>
@override
void onWindowResized() {
_saveFrameDebounce.call(_saveFrame);
super.onWindowMoved();
super.onWindowResized();
}
@override