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
commit 753a2ab2b7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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