From 161534043e8aec28c093011a1e4c937a4949dc9a Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Thu, 23 Apr 2026 08:30:41 +0200 Subject: [PATCH] fix side panel padding: no pad on divider edge MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sidebar pads left/top only (not right — that's the divider side). Context panel pads right/top only (not left — divider side). The divider handle's transparent pixels now show the center column's background correctly. Co-Authored-By: Claude Opus 4.6 (1M context) --- lib/app.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/app.dart b/lib/app.dart index 85c3413e..ababda0c 100644 --- a/lib/app.dart +++ b/lib/app.dart @@ -441,7 +441,7 @@ class _SidebarSlot extends StatelessWidget { return Container( color: tokens.sidebarBackground, alignment: Alignment.topLeft, - padding: const EdgeInsets.fromLTRB(2, 2, 2, 0), + padding: const EdgeInsets.fromLTRB(2, 2, 0, 0), child: active.build(context), ); } @@ -558,7 +558,7 @@ class _ContextSlot extends StatelessWidget { return Container( color: tokens.panelBackground, alignment: Alignment.topLeft, - padding: const EdgeInsets.fromLTRB(2, 2, 2, 0), + padding: const EdgeInsets.fromLTRB(0, 2, 2, 0), child: active.build(context), ); }