fix: linux resizable (#8015)

Signed-off-by: fufesou <shuanglongchen@yeah.net>
This commit is contained in:
fufesou 2024-05-11 08:53:19 +08:00 committed by GitHub
parent 69b11e8dc6
commit b6d6a4360f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3266,7 +3266,7 @@ Widget buildVirtualWindowFrame(BuildContext context, Widget child) {
);
}
get windowEdgeSize => isLinux && _linuxWindowResizable ? 0.0 : kWindowEdgeSize;
get windowEdgeSize => isLinux && !_linuxWindowResizable ? 0.0 : kWindowEdgeSize;
// `windowManager.setResizable(false)` will reset the window size to the default size on Linux and then set unresizable.
// See _linuxWindowResizable for more details.