From a41a9ca198aba1bfb7292e4e621a2e9681a1e0a5 Mon Sep 17 00:00:00 2001 From: Dmitry Date: Sun, 20 Sep 2026 10:46:42 +0300 Subject: [PATCH] =?UTF-8?q?style(app):=20=D1=82=D0=B5=D0=BA=D1=81=D1=82=20?= =?UTF-8?q?=D0=B2=20=D0=B2=D1=8B=D0=B1=D0=BE=D1=80=D0=B5=20=D1=81=D0=BA?= =?UTF-8?q?=D0=BE=D1=83=D0=BF=D0=B0=20=D0=BF=D0=BE=20=D1=86=D0=B5=D0=BD?= =?UTF-8?q?=D1=82=D1=80=D1=83=20=D1=8F=D1=87=D0=B5=D0=B9=D0=BA=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/lib/core/widgets/scope_selector.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/lib/core/widgets/scope_selector.dart b/app/lib/core/widgets/scope_selector.dart index 6d56c1d..70faff7 100644 --- a/app/lib/core/widgets/scope_selector.dart +++ b/app/lib/core/widgets/scope_selector.dart @@ -34,6 +34,9 @@ class ScopeSelector extends ConsumerWidget { for (final s in rows) DropdownMenuItem( value: s.scope, + // the button is as wide as the longest name; a shorter one would sit at its + // left edge otherwise + alignment: Alignment.center, child: Text(s.name, overflow: TextOverflow.ellipsis), ), ],