From e0760e62504de1ab28495ee7fe9cfbd630a2dd37 Mon Sep 17 00:00:00 2001 From: KRTirtho Date: Thu, 30 Jan 2025 20:36:52 +0600 Subject: [PATCH] chore: fix linux resizing blocking scrollbar --- .env.example | 1 + lib/main.dart | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.env.example b/.env.example index 888cbe6b..35c5d563 100644 --- a/.env.example +++ b/.env.example @@ -14,3 +14,4 @@ LASTFM_API_SECRET=$LASTFM_API_SECRET RELEASE_CHANNEL=$RELEASE_CHANNEL HIDE_DONATIONS=$HIDE_DONATIONS +DISABLE_SPOTIFY_IMAGES=$DISABLE_SPOTIFY_IMAGES diff --git a/lib/main.dart b/lib/main.dart index e0b6e370..3994fd50 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -189,7 +189,10 @@ class Spotube extends HookConsumerWidget { ); if (kIsLinux) { - child = DragToResizeArea(child: child); + child = DragToResizeArea( + resizeEdgeSize: 2.5, + child: child, + ); } return child;