From f0f365c74d351f6c9c62bedbd4ad5a2726d9241c Mon Sep 17 00:00:00 2001 From: highjeans <77588045+highjeans@users.noreply.github.com> Date: Fri, 4 Feb 2022 11:44:59 -0800 Subject: [PATCH] fix location of back button on macOS --- lib/components/Shared/PageWindowTitleBar.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/components/Shared/PageWindowTitleBar.dart b/lib/components/Shared/PageWindowTitleBar.dart index d4a35e28..8ee4a42d 100644 --- a/lib/components/Shared/PageWindowTitleBar.dart +++ b/lib/components/Shared/PageWindowTitleBar.dart @@ -61,7 +61,7 @@ class PageWindowTitleBar extends StatelessWidget children: [ if (Platform.isMacOS) SizedBox( - width: MediaQuery.of(context).size.width * 0.07, + width: MediaQuery.of(context).size.width * 0.045, ), if (leading != null) leading!, Expanded(child: MoveWindow(child: Center(child: center))),