fix: When to show third column

This commit is contained in:
Christian Pauly 2021-05-23 20:18:29 +02:00
parent 93a6726aeb
commit 462baef9b2
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ class SideViewLayout extends StatelessWidget {
final hideSideView = currentUrl.split('/').length == 4;
return sideView == null
? mainView
: MediaQuery.of(context).size.width < FluffyThemes.columnWidth * 3 &&
: MediaQuery.of(context).size.width < FluffyThemes.columnWidth * 3.5 &&
!hideSideView
? sideView
: Row(